Sha256: 898d0a74c59570528500b9d80d3801284772864f62aaf662079bf7fb4e1fe68b
Contents?: true
Size: 868 Bytes
Versions: 2
Compression:
Stored size: 868 Bytes
Contents
(* camlexer - Lexical Analyzer for Gonzui ocamlsupport Copyright (C) 2005 Soutaro Matsumoto <matsumoto@soutaro.com> All rights reserved. This is free software with ABSOLUTELY NO WARRANTY. You can redistribute it and/or modify it under the terms of the GNU General Public License version 2. *) (* $Id: types.ml,v 1.1.1.1 2005/09/15 19:38:38 bashi Exp $ *) type gonzui_type = Tident | Tpunct | Tfuncdef | Ttext | Tstring | Tcomment | Tkeyword | Tchar | Tint | Tfloat let to_string = function Tident -> "ident" | Tpunct -> "punct" | Tfuncdef -> "funcdef" | Ttext -> "text" | Tstring -> "string" | Tcomment -> "comment" | Tkeyword -> "keyword" | Tchar -> "character" | Tfloat -> "float" | Tint -> "integer"
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
langscan-1.2-x86-mswin32-60 | lib/langscan/ocaml/types.ml |
langscan-1.2 | lib/langscan/ocaml/types.ml |