Questions tagged [antlrv3ide]

An eclipse plugin for ANTLRv3 grammars.

An eclipse plugin for ANTLRv3 grammars.

Features:

  • Support ANTLR 3.0.x/3.1.x/3.2.x
  • ANTLR Launcher and Debugger(Java only)
  • ANTLR Built-in Interpreter
  • Source Formatter (Ctrl+Shift+F)
  • Railroad Diagrams
  • Custom targets
  • Automatically (on save) generate resources
  • Problem markers for errors and warnings in grammar files
  • Advanced text editor, code selection (F3) and code completion (Ctrl+Space)
  • Simple syntax highlighting for target language (Java, C#, Python, C, etc.)
  • Mark generated resources as derived
  • Advanced StringTemplate Editor (*.st and .stg) Advanced gUnit Editor (.gunit and *.testsuite)

http://antlrv3ide.sourceforge.net

19 questions
0
votes
0 answers

Using ANTLR with Eclipse and ANTLR IDE: cannot add ANTLR jar 'Invalid ANTLR home Reason: Couldn't create package'

I'm trying to use ANTLR with Eclipse (ANTLR version 3.5, Eclipse Juno), wing the ANTLR IDE plugin, following the setup steps here: http://vimeo.com/8001326 However, when it comes to adding the ANTLR package, I get an error 'Invalid ANTLR home…
0
votes
1 answer

antlr ide producing buggy parser/lexer

I'm using antlr IDE for eclipse with antlr 3.4 and have created the following combined grammar to use on propositional logic grammar Propositional; options { language = Java; } @header { package antlr; } @lexer::header { package…
John Walker
  • 291
  • 1
  • 5
  • 16
0
votes
1 answer

Q&A: ANTLRWorks 3.0 mac os version some symbol (like vertical bar '|' ) disappear/not show correctly issue

Someone just like me found that it is hard to use ANTLRWorks 3.0 under Mac OS, some symbols typically vertical bar '|' is invisible . it is because default mac front is not compatible in this IDE,this is the way to fix this issue: see answer
Yank
  • 718
  • 6
  • 17
0
votes
1 answer

Building C target grammar parser, need to know how to include when compile

I am tring to build a parser (in C language) with antlrIDE on Windows 7 platform. I finished the grammar (.g of combined grammar), which automatically generates lexer and parser for me. However, I don't know how to compile the .c and .h file. I…
1
2