Exemplo n.º 1
0
Arquivo: AST.cs Projeto: almeswe/alm
 public void SetSourceContext(SyntaxTreeNode lnode, SyntaxTreeNode rnode) => this.SourceContext = GetSourceContext(lnode, rnode);
Exemplo n.º 2
0
Arquivo: AST.cs Projeto: almeswe/alm
 public ModuleRoot(string modulePath, SyntaxTreeNode root)
 {
     this.ModulePath = modulePath;
     this.Module     = root;
     this.AddNode(root);
 }
Exemplo n.º 3
0
Arquivo: AST.cs Projeto: almeswe/alm
 public void SetSourceContext(SyntaxTreeNode node) => this.SourceContext        = GetSourceContext(node);