Sha256: 95c62710d7be70b4b2be19c4fd2bb4315b22c685ff4e58a27accb8b00729dd31
Contents?: true
Size: 1.2 KB
Versions: 5
Compression:
Stored size: 1.2 KB
Contents
/* * $Id: parsers.h 717 2009-07-07 03:40:50Z dhiebert $ * * Copyright (c) 2000-2003, Darren Hiebert * * This source code is released for free distribution under the terms of the * GNU General Public License. * * External interface to all language parsing modules. * * To add a new language parser, you need only modify this single source * file to add the name of the parser definition function. */ #ifndef _PARSERS_H #define _PARSERS_H /* Add the name of any new parser definition function here */ #define PARSER_LIST \ AntParser, \ AsmParser, \ AspParser, \ AwkParser, \ BasicParser, \ BetaParser, \ CParser, \ CppParser, \ CsharpParser, \ CobolParser, \ DosBatchParser, \ EiffelParser, \ ErlangParser, \ FlexParser, \ FortranParser, \ HtmlParser, \ JavaParser, \ JavaScriptParser, \ LispParser, \ LuaParser, \ MakefileParser, \ MatLabParser, \ OcamlParser, \ PascalParser, \ PerlParser, \ PhpParser, \ PythonParser, \ RexxParser, \ RubyParser, \ SchemeParser, \ ShParser, \ SlangParser, \ SmlParser, \ SqlParser, \ TclParser, \ TexParser, \ VeraParser, \ VerilogParser, \ VhdlParser, \ VimParser, \ YaccParser #endif /* _PARSERS_H */ /* vi:set tabstop=4 shiftwidth=4: */
Version data entries
5 entries across 5 versions & 1 rubygems