Difference between revisions of "Parsers in Java"

From JVMLangSummit
Jump to navigationJump to search
(New page: == ANTLR - Parsers in Java == Terence Parr, cs.usfca.edu ; Project: ; Blog: ; Slides: Image:file.pdf === Abstract === = Background = = Current Status = = Future = = Key Issu...)
 
Line 7: Line 7:
  
 
=== Abstract ===
 
=== Abstract ===
 +
 +
Generating parsers and state machines in Java — Terence Parr
 +
 +
Implementing large and/or efficient state machines in Java is pretty tough. Because we're missing a few key items even at the Java bytecode level, some gymnastics are required. In this talk, I'll describe my experiences building parser generators (ANTLR) and interpreters in Java.
  
 
= Background =
 
= Background =

Revision as of 09:21, 17 September 2009

ANTLR - Parsers in Java

Terence Parr, cs.usfca.edu

Project
Blog
Slides
File:File.pdf

Abstract

Generating parsers and state machines in Java — Terence Parr

Implementing large and/or efficient state machines in Java is pretty tough. Because we're missing a few key items even at the Java bytecode level, some gymnastics are required. In this talk, I'll describe my experiences building parser generators (ANTLR) and interpreters in Java.

Background

Current Status

Future

Key Issues for Discussion

(please expand cooperatively)