示例#1
0
文件: codegen.cs 项目: KevinT/manos
 public Expression(Value value)
 {
     Value = value;
 }
示例#2
0
文件: codegen.cs 项目: KevinT/manos
 public PropertyAccessValue(Value target, string property)
 {
     Target = target;
     Property = property;
 }