Example #1
0
    public string nameOrValue;//함수, 변수라면 이름, 상수라면 값

    public GolLangKeyword(GKeyword keyword)
    {
        this.keyword = keyword;

        this.nameOrValue = "";
    }
Example #2
0
    public GolLangKeyword(GKeyword keyword, string nameOrValue)
    {
        this.keyword = keyword;

        this.nameOrValue = nameOrValue;
    }