blob: e23229e283747602871f15a55cc7867e7f9c5fc1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
//
//
// The Nimrod Compiler
// (c) Copyright 2009 Andreas Rumpf
//
// See the file "copying.txt", included in this
// distribution, for details about the copyright.
//
unit pendx;
{$include config.inc}
interface
uses
nsystem, llstream, scanner, idents, strutils, ast, msgs, pnimsyn;
function ParseAll(var p: TParser): PNode;
function parseTopLevelStmt(var p: TParser): PNode;
// implements an iterator. Returns the next top-level statement or nil if end
// of stream.
implementation
function ParseAll(var p: TParser): PNode;
begin
result := nil
end;
function parseTopLevelStmt(var p: TParser): PNode;
begin
result := nil
end;
end.
|