Example #1
0
 public ParsingOptions(SyntaxProfile syntaxProfile)
 {
     SyntaxProfile = syntaxProfile;
 }
Example #2
0
 public ESCompilerOptions(SyntaxProfile syntaxProfile) : this(new ParsingOptions(syntaxProfile))
 {
 }
Example #3
0
 public ESCompilerOptions(CompilationUnitKind expectedSourceSyntax, SyntaxProfile syntaxProfile) : this(new ParsingOptions(syntaxProfile))
 {
     this.expectedSourceSyntax = expectedSourceSyntax;
 }
Example #4
0
 public ESCompiler(ESObjectSpace objectSpace, TextReader sourceStream, SyntaxProfile syntaxProfile)
     : this(objectSpace, new ESParser(sourceStream, syntaxProfile))
 {
 }