22
33namespace ServerCodeExcisionCommon
44{
5- public interface IServerCodeExcisionLanguage
6- {
7- List < string > ServerOnlySymbolRegexes { get ; }
5+ public interface IServerCodeExcisionLanguage
6+ {
7+ List < string > ServerOnlySymbolRegexes { get ; }
88
9- List < string > ServerOnlySymbols { get ; }
9+ List < string > ServerOnlySymbols { get ; }
1010
11- string ServerPrecompilerSymbol { get ; }
11+ string ServerPrecompilerSymbol { get ; }
1212
13- string ServerScopeStartString { get ; }
13+ string ServerScopeStartString { get ; }
1414
15- string ServerScopeEndString { get ; }
15+ string ServerScopeEndString { get ; }
1616
17- T CreateLexer < T > ( Antlr4 . Runtime . AntlrInputStream inputStream )
18- where T : Antlr4 . Runtime . Lexer ;
17+ T CreateLexer < T > ( Antlr4 . Runtime . AntlrInputStream inputStream )
18+ where T : Antlr4 . Runtime . Lexer ;
1919
20- T CreateParser < T > ( Antlr4 . Runtime . CommonTokenStream tokenStream )
21- where T : Antlr4 . Runtime . Parser ;
20+ T CreateParser < T > ( Antlr4 . Runtime . CommonTokenStream tokenStream )
21+ where T : Antlr4 . Runtime . Parser ;
2222
23- IServerCodeVisitor CreateSimpleVisitor ( string code ) ;
23+ IServerCodeVisitor CreateSimpleVisitor ( string code ) ;
2424
25- IServerCodeVisitor CreateFunctionVisitor ( string code ) ;
25+ IServerCodeVisitor CreateFunctionVisitor ( string code ) ;
2626
27- IServerCodeVisitor CreateSymbolVisitor ( string code ) ;
27+ IServerCodeVisitor CreateSymbolVisitor ( string code ) ;
2828
29- bool AnyServerOnlySymbolsInScript ( string script ) ;
30- }
31- }
29+ bool AnyServerOnlySymbolsInScript ( string script ) ;
30+ }
31+ }
0 commit comments