Exemple #1
0
        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));
        }