mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 17:34:43 +00:00
19 lines
374 B
Nim
Executable File
19 lines
374 B
Nim
Executable File
#
|
|
#
|
|
# The Nimrod Compiler
|
|
# (c) Copyright 2012 Andreas Rumpf
|
|
#
|
|
# See the file "copying.txt", included in this
|
|
# distribution, for details about the copyright.
|
|
#
|
|
|
|
import
|
|
llstream, lexer, parser, idents, strutils, ast, msgs
|
|
|
|
proc ParseAll*(p: var TParser): PNode =
|
|
result = nil
|
|
|
|
proc parseTopLevelStmt*(p: var TParser): PNode =
|
|
result = nil
|
|
|