-
Notifications
You must be signed in to change notification settings - Fork 0
/
AST.cs
42 lines (38 loc) · 884 Bytes
/
AST.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CDullCS
{
class Node
{
public string val;
public int value;
public Node(string valS, int valueS)
{
val = valS;
value = valueS;
}
}
class Root
{
public string name;
public List<Node> nodes = new List<Node>() { };
public void addNode(string val, int value)
{
nodes.Add(new Node(val, value));
}
}
class AST
{
public List<Root> roots = new List<Root>(){};
public Root addRoot(string name)
{
Root newRoot = new Root();
newRoot.name = name;
roots.Add(newRoot);
return newRoot;
}
}
}