File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -390,9 +390,9 @@ export namespace OperatorKind {
390390 case Token . GreaterThan_GreaterThan_Equals : return OperatorKind . BitwiseShr ;
391391 case Token . GreaterThan_GreaterThan_GreaterThan :
392392 case Token . GreaterThan_GreaterThan_GreaterThan_Equals : return OperatorKind . BitwiseShrU ;
393- case Token . Equals_Equals :
393+ case Token . Equals_Equals :
394394 case Token . Equals_Equals_Equals : return OperatorKind . Eq ;
395- case Token . Exclamation_Equals :
395+ case Token . Exclamation_Equals :
396396 case Token . Exclamation_Equals_Equals : return OperatorKind . Ne ;
397397 case Token . GreaterThan : return OperatorKind . Gt ;
398398 case Token . GreaterThan_Equals : return OperatorKind . Ge ;
@@ -436,7 +436,7 @@ export class Program extends DiagnosticEmitter {
436436 diagnostics : DiagnosticMessage [ ] | null = null
437437 ) {
438438 super ( diagnostics ) ;
439- this . module = Module . create ( options . stackSize > 0 , options . sizeTypeRef ) ;
439+ this . module = Module . create ( options . stackSize > 0 , options . sizeTypeRef ) ;
440440 this . parser = new Parser ( this . diagnostics , this . sources ) ;
441441 this . resolver = new Resolver ( this ) ;
442442 let nativeFile = new File ( this , Source . native ) ;
You can’t perform that action at this time.
0 commit comments