コード例 #1
0
ファイル: AstRoot.cs プロジェクト: gbull122/vscode-r
        public override bool Parse(ParseContext context, IAstNode parent = null)
        {
            // Remove comments from the token stream
            Comments = new CommentsCollection(context.Comments);

            var globalScope = new GlobalScope();

            return(globalScope.Parse(context, this));
        }