예제 #1
0
파일: Executable.cs 프로젝트: japj/vulcan
 protected Executable(string name, AstNamedNode astNamedNode) : this(name)
 {
     AstNamedNode = astNamedNode;
 }
예제 #2
0
 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)
 {
 }