Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enforce hoisting of semantic predicates over actions #177

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file added org.antlr.feature/antlr.config
Empty file.
1 change: 1 addition & 0 deletions org.antlr.feature/build.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
bin.includes = feature.xml
14 changes: 14 additions & 0 deletions org.antlr.feature/feature.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<feature
id="org.antlr.feature"
label="org.antlr"
version="3.5.3.qualifier">

<plugin
id="org.antlr.runtime"
download-size="0"
install-size="0"
version="0.0.0"
unpack="false"/>

</feature>
32 changes: 32 additions & 0 deletions org.antlr.feature/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<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/xsd/maven-4.0.0.xsd">

<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.antlr</groupId>
<artifactId>antlr-master</artifactId>
<version>3.5.3-SNAPSHOT</version>
</parent>

<artifactId>org.antlr.feature</artifactId>
<packaging>eclipse-feature</packaging>

<name>org.antlr.feature</name>

<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
</plugin>
</plugins>
</build>

</project>
10 changes: 10 additions & 0 deletions org.antlr.runtime/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: org.antlr.runtime
Bundle-SymbolicName: org.antlr.runtime
Bundle-Version: 3.5.3.qualifier
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
Export-Package: org.antlr.runtime,
org.antlr.runtime.debug,
org.antlr.runtime.misc,
org.antlr.runtime.tree
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#Generated by Maven
#Sun Apr 10 02:09:06 CEST 2016
version=3.5.3-SNAPSHOT
groupId=org.antlr
artifactId=antlr-runtime
67 changes: 67 additions & 0 deletions org.antlr.runtime/META-INF/maven/org.antlr/antlr-runtime/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
<?xml version="1.0" encoding="UTF-8"?>
<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>org.antlr</groupId>
<artifactId>antlr-runtime</artifactId>
<packaging>jar</packaging>

<!--

Inherit from the ANTLR master pom, which tells us what
version we are and allows us to inherit dependencies
and so on.

-->
<parent>
<groupId>org.antlr</groupId>
<artifactId>antlr-master</artifactId>
<version>3.5.3-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>

<name>ANTLR 3 Runtime</name>

<description>A framework for constructing recognizers, compilers, and translators from grammatical descriptions containing Java, C#, C++, or Python actions.</description>
<url>http://www.antlr.org</url>
<developers>
<developer>
<name>Terence Parr</name>
<organization>USFCA</organization>
<organizationUrl>http://www.cs.usfca.edu</organizationUrl>
<email>[email protected]</email>
<roles>
<role>Project Leader</role>
<role>Developer - Java Target</role>
</roles>
<timezone>PST</timezone>
</developer>
<developer>
<name>Jim Idle</name>
<organization>Temporal Wave LLC</organization>
<organizationUrl>http://www.temporal-wave.com</organizationUrl>
<email>[email protected]</email>
<roles>
<role>Developer - Maven stuff</role>
<role>Developer - C Target</role>
</roles>
<timezone>PST</timezone>
</developer>
</developers>

<dependencies>

<dependency>
<groupId>org.antlr</groupId>
<artifactId>stringtemplate</artifactId>
<scope>compile</scope>
<optional>true</optional>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>

</dependencies>

</project>
Empty file added org.antlr.runtime/antlr.config
Empty file.
4 changes: 4 additions & 0 deletions org.antlr.runtime/build.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
source.. = .
output.. = .
bin.includes = META-INF/,\
org/
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
30 changes: 30 additions & 0 deletions org.antlr.runtime/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<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/xsd/maven-4.0.0.xsd">

<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.antlr</groupId>
<artifactId>antlr-master</artifactId>
<version>3.5.3-SNAPSHOT</version>
</parent>

<artifactId>org.antlr.runtime</artifactId>
<packaging>eclipse-plugin</packaging>

<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
</plugin>
</plugins>
</build>

</project>
Empty file.
7 changes: 7 additions & 0 deletions org.antlr.updatesite/category.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<site>
<feature url="features/org.antlr.feature_0.0.0.jar" id="org.antlr.feature" version="0.0.0">
<category name="org.antlr"/>
</feature>
<category-def name="org.antlr" label="org.antlr"/>
</site>
78 changes: 78 additions & 0 deletions org.antlr.updatesite/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
<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/xsd/maven-4.0.0.xsd">

<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.antlr</groupId>
<artifactId>antlr-master</artifactId>
<version>3.5.3-SNAPSHOT</version>
</parent>

<artifactId>org.antlr.updatesite</artifactId>
<packaging>eclipse-repository</packaging>

<properties>
<github.global.server>github</github.global.server>
</properties>

<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-director-plugin</artifactId>
<version>${tycho.version}</version>
<executions>
<execution>
<id>materialize-products</id>
<goals>
<goal>materialize-products</goal>
</goals>
</execution>
<execution>
<id>archive-products</id>
<goals>
<goal>archive-products</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.github.github</groupId>
<artifactId>site-maven-plugin</artifactId>
<version>0.12</version>
<configuration>
<branch>refs/heads/gh-pages</branch>
<includes>
<include>**/*</include>
</includes>
<message>Creating site for ${project.version}</message>
<outputDirectory>${project.build.directory}/repository</outputDirectory>
<!--<path>${updates}/${output-dir}/</path>-->
<repositoryName>antlr3</repositoryName>
<repositoryOwner>timeraider4u</repositoryOwner>
<noJekyll>true</noJekyll>
</configuration>
<executions>
<execution>
<goals>
<goal>site</goal>
</goals>
<phase>deploy</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>

</project>
Loading