Java CUP Parser Generator.
CUP is a system for generating LALR parsers from simple specifications. It serves the same role as the widely used program YACC [1] and in fact offers most of the features of YACC. However, CUP is written in Java, uses specifications including embedded Java code, and produces pars....
Here is the list of declaration for java-cup. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>net.sf.squirrel-sql.thirdparty-non-maven</groupId> <artifactId>java-cup</artifactId> <version>0.11a</version> </dependency>
If you think this Maven repository POM file listing for java-cup is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:CUP Parser Generator Copyright Notice, License, and Disclaimer
URL: http://www.smlnj.org//license.html.
The following packages are defined in the java-cup-0.11a.jar
java_cup java_cup.anttask java_cup.runtime
Here is the content of the POM file.
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>net.sf.squirrel-sql.thirdparty-non-maven</groupId> <artifactId>java-cup</artifactId> <name>Java CUP Parser Generator</name> <version>0.11a</version> <description> CUP is a system for generating LALR parsers from simple specifications. It serves the same role as the widely used program YACC [1] and in fact offers most of the features of YACC. However, CUP is written in Java, uses specifications including embedded Java code, and produces parsers which are implemented in Java. </description> <url>http://www2.cs.tum.edu/projects/cup/</url> <licenses> <license> <name>CUP Parser Generator Copyright Notice, License, and Disclaimer</name> <url>http://www.smlnj.org//license.html</url> </license> </licenses> <!-- Source code repository for this version is unavailable at this time. However, the upcoming release of Java CUP version 2 has a browseable source code repository (svn) at the URL below. --> <scm> <url>http://www2.in.tum.de:8080/cup2/browser</url> </scm> </project>