示例#1
0
文件: Engine.cs 项目: Sullux/tws
 public Engine(Lexer.Lexer lexer, MetadataHost host)
 {
     mLexer = lexer;
     Host = host;
     InitializeKeywords();
     Move();
 }
示例#2
0
 public ReflectionAssemblyReference(MetadataHost host, SR.Assembly assembly)
     : base(host)
 {
     mAssembly = assembly;
     FullName = mAssembly.FullName;
     Name = mAssembly.GetName().Name;
     Location = mAssembly.Location;
 }
示例#3
0
 public IntegerConstantExpression(MetadataHost host, BigInteger value)
     : base(host)
 {
     Value = value;
 }
示例#4
0
 public BinaryExpression(MetadataHost host)
     : base(host)
 {
 }
示例#5
0
 public ParameterExpression(MetadataHost host, ParameterDefinition parameter)
     : base(host)
 {
     Parameter = parameter;
 }
示例#6
0
文件: Addition.cs 项目: Sullux/tws
 public Addition(MetadataHost host)
     : base(host)
 {
 }
示例#7
0
文件: Expression.cs 项目: Sullux/tws
 protected Expression(MetadataHost host)
 {
     Host = host;
 }
示例#8
0
 protected AssemblyReference(MetadataHost host)
 {
     Host = host;
 }
示例#9
0
 public MethodCallExpression(MetadataHost host)
     : base(host)
 {
 }
示例#10
0
 public AssemblyDefinition(MetadataHost host)
     : base(host)
 {
     RootNamespace = new RootNamespaceDefinition();
     AssemblyReferences = new List<AssemblyReference>();
 }
示例#11
0
 public ProjectParsingContext(MetadataHost host)
 {
     AssemblyReferences = new List<AssemblyReference>();
     Host = host;
 }