antlr replacement

This commit is contained in:
sefftinge 2008-09-17 15:05:12 +00:00 committed by sefftinge
parent c57b8b8954
commit c9d16b9dc3
2 changed files with 1 additions and 26 deletions

View file

@ -5,8 +5,7 @@ Bundle-SymbolicName: org.eclipse.xtext.generator.tests;singleton:=true
Bundle-Version: 0.7.0.qualifier
Bundle-Vendor: eclipse.org
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Require-Bundle: org.antlr;bundle-version="3.0.0",
org.eclipse.xtext,
Require-Bundle: org.eclipse.xtext,
org.eclipse.xtext.generator,
org.junit,
org.eclipse.emf.compare,

View file

@ -1,24 +0,0 @@
/*******************************************************************************
* Copyright (c) 2008 itemis AG (http://www.itemis.eu) and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
*******************************************************************************/
package org.eclipse.xtext.tests;
import org.antlr.Tool;
public class GenerateAntlrParser {
/**
* @param args
*/
public static void main(String[] args) {
Tool antlr = new Tool(new String[] { "./src-gen/org/eclipse/xtext/parser/internal/InternalXtextGrammarTest.g"});
antlr.process();
}
}