コード例 #1
0
ファイル: NodeThrow.cs プロジェクト: LayeLang/Laye
 internal NodeThrow(Location location, Node value)
     : base(location)
 {
     this.value = value;
 }
コード例 #2
0
ファイル: NodeOr.cs プロジェクト: LayeLang/Laye
 internal NodeOr(Node left, Node right)
     : base(left.location)
 {
     this.left = left;
     this.right = right;
 }
コード例 #3
0
ファイル: NodeInvoke.cs プロジェクト: LayeLang/Laye
 internal NodeInvoke(Node target, List<Node> args)
     : base(target.location)
 {
     this.target = target;
     this.args = args;
 }
コード例 #4
0
ファイル: NodeYield.cs プロジェクト: LayeLang/Laye
 internal NodeYield(Location location, Node value)
     : base(location)
 {
     this.value = value;
 }
コード例 #5
0
ファイル: NodeAs.cs プロジェクト: LayeLang/Laye
 internal NodeAs(Node value, Node type)
     : base(value.location)
 {
     this.value = value;
     this.type = type;
 }