summaryrefslogtreecommitdiffstats
path: root/src/CodeParser/CParser/Argument.ts
blob: 4cd793d293fd0f8cd0620cb31a7d0f10462a035e (plain)
1
2
3
4
5
6
import { ParseTree } from "./ParseTree";

export class Argument {
    public Name: string = undefined;
    public Type: ParseTree =  new ParseTree();
}