diff options
Diffstat (limited to 'cpp.sig')
-rw-r--r-- | cpp.sig | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/cpp.sig b/cpp.sig deleted file mode 100644 index e842e13..0000000 --- a/cpp.sig +++ /dev/null @@ -1,30 +0,0 @@ -signature CPP = sig - structure T: TOKENIZER - - type t - type tkPos - - type tkExpectedVal - exception TkExpected of tkExpectedVal - - type tkErrorVal - exception TkError of tkErrorVal - - datatype tkExp = - Tk of T.token | - Id | - NumConst | - StrLiteral | - UnOp | - BinOp | - Op - - val create: string -> string list -> t - val getToken: t -> T.token * t - val getLastPos: t -> tkPos - - val tkExpectedPrint: tkExpectedVal -> unit - val tkErrorPrint: tkErrorVal -> unit - - val debugPrint: t -> unit -end |