コード例 #1
0
ファイル: Parser.ext.cs プロジェクト: aikixd/T4TheWin
        // Syntax
        public bool TryParseDirectiveNameSyntax(Lexer lexer, out DirectiveNameSyntax result)
        {
            if (
                this.TryParseIdentifierToken(lexer, new string[] { }, out var syntaxPart0))
            {
                result = new DirectiveNameSyntax(syntaxPart0);
                return(true);
            }

            result = null;
            return(false);
        }         // Parse method end
コード例 #2
0
        public DirectiveContentsSyntax(DirectiveNameSyntax Identifier, DirectiveParameterSyntaxList DirectiveParameters)
        {
            this.Identifier = Identifier;

            this.DirectiveParameters = DirectiveParameters;
        }