コード例 #1
0
 public VariableBase(ScriptBase parent, string name, string type, bool is_array) : base(parent, name)
 {
     this.isArray        = is_array;
     this.unresolvedType = type;
 }
コード例 #2
0
 public ScriptBaseDoc(ScriptBase parent) : base(parent)
 {
     this.parent = parent;
 }
コード例 #3
0
 public VariableBase(ScriptBase parent, string name, string type) : base(parent, name)
 {
     isArray             = false;
     this.unresolvedType = type;
 }