Contains the classes used to compile Bistro code, including the lexer, parser, and compiler. Both the Bistro lexer and parser were generated automatically using the ANTLR compiler generator. BistroLex.g contains the grammar for the lexer. Bistro.g contains the grammar for the parser.

The Bistro compiler translates Bistro source code files into equivalent Java source code files. The resulting Java source code may be compiled using any commercial Java compiler that adheres to the published standards.