@@ -1160,14 +1160,14 @@ export function createChecker(program: Program): Checker {
1160
1160
return sym . flags & SymbolFlags . Model
1161
1161
? checkModelStatement ( node as ModelStatementNode , mapper )
1162
1162
: sym . flags & SymbolFlags . Scalar
1163
- ? checkScalar ( node as ScalarStatementNode , mapper )
1164
- : sym . flags & SymbolFlags . Alias
1165
- ? checkAlias ( node as AliasStatementNode , mapper )
1166
- : sym . flags & SymbolFlags . Interface
1167
- ? checkInterface ( node as InterfaceStatementNode , mapper )
1168
- : sym . flags & SymbolFlags . Operation
1169
- ? checkOperation ( node as OperationStatementNode , mapper )
1170
- : checkUnion ( node as UnionStatementNode , mapper ) ;
1163
+ ? checkScalar ( node as ScalarStatementNode , mapper )
1164
+ : sym . flags & SymbolFlags . Alias
1165
+ ? checkAlias ( node as AliasStatementNode , mapper )
1166
+ : sym . flags & SymbolFlags . Interface
1167
+ ? checkInterface ( node as InterfaceStatementNode , mapper )
1168
+ : sym . flags & SymbolFlags . Operation
1169
+ ? checkOperation ( node as OperationStatementNode , mapper )
1170
+ : checkUnion ( node as UnionStatementNode , mapper ) ;
1171
1171
}
1172
1172
1173
1173
function getOrInstantiateTemplate (
0 commit comments