コード例 #1
0
ファイル: Executable.cs プロジェクト: japj/vulcan
 protected Executable(string name, AstNamedNode astNamedNode) : this(name)
 {
     AstNamedNode = astNamedNode;
 }
コード例 #2
0
ファイル: XmlToAstParserPhase.cs プロジェクト: japj/vulcan
 public NewBindingItem(XmlIRDocumentType docType, XObject XObject, string XValue, AstNamedNode ParentASTNode, AstParserScopeManager scopeManager)
 {
     this.docType = docType;
     this.XObject = XObject;
     this.XValue = XValue;
     this.node = ParentASTNode;
     this.ScopeManager = scopeManager;
 }
コード例 #3
0
ファイル: Executable.cs プロジェクト: japj/vulcan
 protected Executable(AstNamedNode astNamedNode) : this(astNamedNode.Name, astNamedNode)
 {
 }