4 using System.Collections;
9 namespace SiliconStudio.Shaders.Ast
20 public IronyBrowsableNode(Node node)
32 SourceFilename = Node.Span.Location.FileSource,
33 Position = Node.Span.Location.Position,
34 Line = Node.Span.Location.Line,
35 Column = Node.Span.Location.Column
46 public Node Node {
get; set; }
51 return from children in Node.Childrens() where children != null select
new IronyBrowsableNode(children);
55 public override string ToString()
57 return Node.ToString();