Commit e34b5dd 1 parent c4ad34f commit e34b5dd Copy full SHA for e34b5dd
File tree 3 files changed +8
-4
lines changed
3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -352,8 +352,11 @@ export class InkParser extends StringParser {
352
352
public static readonly Latin1Supplement : CharacterRange =
353
353
CharacterRange . Define ( "\u0080" , "\u00FF" , new CharacterSet ( ) ) ;
354
354
355
- public static readonly Chinese : CharacterRange =
356
- CharacterRange . Define ( "\u4E00" , "\u9FFF" , new CharacterSet ( ) ) ;
355
+ public static readonly Chinese : CharacterRange = CharacterRange . Define (
356
+ "\u4E00" ,
357
+ "\u9FFF" ,
358
+ new CharacterSet ( )
359
+ ) ;
357
360
358
361
private readonly ExtendIdentifierCharacterRanges = (
359
362
identifierCharSet : CharacterSet
Original file line number Diff line number Diff line change @@ -443,7 +443,8 @@ export class Story extends InkObject {
443
443
this . _sawLookaheadUnsafeFunctionAfterNewline = false ;
444
444
445
445
if ( this . _recursiveContinueCount == 1 )
446
- changedVariablesToObserve = this . _state . variablesState . CompleteVariableObservation ( ) ;
446
+ changedVariablesToObserve =
447
+ this . _state . variablesState . CompleteVariableObservation ( ) ;
447
448
448
449
this . _asyncContinueActive = false ;
449
450
if ( this . onDidContinue !== null ) this . onDidContinue ( ) ;
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ export class VariablesState extends VariablesStateAccessor<
72
72
return changedVars ;
73
73
}
74
74
75
- public NotifyObservers ( changedVars : Map < string , any > ) {
75
+ public NotifyObservers ( changedVars : Map < string , any > ) {
76
76
for ( const [ key , value ] of changedVars ) {
77
77
this . variableChangedEvent ( key , value ) ;
78
78
}
You can’t perform that action at this time.
0 commit comments