mirror of
https://github.com/sigmasternchen/xtext-core
synced 2025-03-16 00:38:56 +00:00
antlr replacement
This commit is contained in:
parent
8e8717583d
commit
607d5a4aa3
3 changed files with 3 additions and 28 deletions
|
@ -31,9 +31,9 @@ Export-Package: org.eclipse.xtext,
|
|||
org.eclipse.xtext.xtextutil.util
|
||||
Require-Bundle: org.eclipse.xtext.log4j;bundle-version="1.2.15",
|
||||
org.eclipse.emf.ecore;visibility:=reexport,
|
||||
org.antlr;visibility:=reexport,
|
||||
org.eclipse.emf.ecore.xmi;bundle-version="2.3.2";visibility:=reexport,
|
||||
org.eclipse.xtext.service;visibility:=reexport,
|
||||
org.eclipse.xtext.util,
|
||||
org.junit;resolution:=optional,
|
||||
org.eclipse.xtend.util.stdlib
|
||||
org.eclipse.xtend.util.stdlib,
|
||||
org.antlr.runtime;bundle-version="3.0.0";visibility:=reexport
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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();
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in a new issue