Beispiel #1
0
 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;
 }
Beispiel #4
0
 public BinaryExpression(MetadataHost host)
     : base(host)
 {
 }
Beispiel #5
0
 public ParameterExpression(MetadataHost host, ParameterDefinition parameter)
     : base(host)
 {
     Parameter = parameter;
 }
Beispiel #6
0
 public Addition(MetadataHost host)
     : base(host)
 {
 }
Beispiel #7
0
 protected Expression(MetadataHost host)
 {
     Host = host;
 }
Beispiel #8
0
 protected AssemblyReference(MetadataHost host)
 {
     Host = host;
 }
Beispiel #9
0
 public MethodCallExpression(MetadataHost host)
     : base(host)
 {
 }
Beispiel #10
0
 public AssemblyDefinition(MetadataHost host)
     : base(host)
 {
     RootNamespace = new RootNamespaceDefinition();
     AssemblyReferences = new List<AssemblyReference>();
 }
Beispiel #11
0
 public ProjectParsingContext(MetadataHost host)
 {
     AssemblyReferences = new List<AssemblyReference>();
     Host = host;
 }