|
structure UserDeclarations =
struct
type svalue = Tokens.svalue
type ('a, 'b) token = ('a, 'b) Tokens.token
type pos = int
type lexresult = (svalue, pos) token
type arg = {
comLevel : int ref,
commonOperations : ParserUtil.PositionMap.operations,
error : (string * int * int -> unit),
stringStart : int ref
}
val eof
val inc
val dec
end
Type detail |
---|
type svalue = Tokens.svalue
type ('a, 'b) token = ('a, 'b) Tokens.token
type pos = int
type lexresult = (svalue, pos) token
type arg = {
comLevel : int ref,
commonOperations : ParserUtil.PositionMap.operations,
error : (string * int * int -> unit),
stringStart : int ref
}
Value detail |
---|
val eof
val inc
val dec
|