public Engine(Lexer.Lexer lexer, MetadataHost host) { mLexer = lexer; Host = host; InitializeKeywords(); Move(); }
public ReflectionAssemblyReference(MetadataHost host, SR.Assembly assembly) : base(host) { mAssembly = assembly; FullName = mAssembly.FullName; Name = mAssembly.GetName().Name; Location = mAssembly.Location; }
public IntegerConstantExpression(MetadataHost host, BigInteger value) : base(host) { Value = value; }
public BinaryExpression(MetadataHost host) : base(host) { }
public ParameterExpression(MetadataHost host, ParameterDefinition parameter) : base(host) { Parameter = parameter; }
public Addition(MetadataHost host) : base(host) { }
protected Expression(MetadataHost host) { Host = host; }
protected AssemblyReference(MetadataHost host) { Host = host; }
public MethodCallExpression(MetadataHost host) : base(host) { }
public AssemblyDefinition(MetadataHost host) : base(host) { RootNamespace = new RootNamespaceDefinition(); AssemblyReferences = new List<AssemblyReference>(); }
public ProjectParsingContext(MetadataHost host) { AssemblyReferences = new List<AssemblyReference>(); Host = host; }