summaryrefslogtreecommitdiffstats
path: root/src/Lang/C/CArgument.ts
blob: 46f180cb8080d71123f76133a4348d69ca780a16 (plain)
1
2
3
4
5
6
import { CParseTree } from "./CParseTree";

export class CArgument {
    public name: string = null;
    public type: CParseTree =  new CParseTree();
}