1
vote
1answer
41 views

Xtext: Boolean feature consuming a token series

as you know, it is possible to make a boolean feature like tokenExist ?= 'TOKEN'? How can i know consume more than one token like this: tokensExist ?= ('TOKENONE' 'TOKENTWO')? This is not valid ...
0
votes
1answer
110 views

Xtext DSL grammar scoping customization

I know there is a simple solution for this but I have no idea how to implement it. I'm looking for how to implement the answer rather than what I need to do. Half the answer is already on this page: ...
0
votes
1answer
45 views

How Xtext knows that entity is refered by ID rule here?

In Xtext 15 minutes tutorial (here) the Entity rule is defined as follows Entity: 'entity' name = ID ('extends' superType = [Entity])? '{' features += Feature* '}' ; which means that after ...
0
votes
1answer
116 views

Xtext rule has non-LL(*) decision due to recursive rule invocations

I am trying to implement a simple grammar in Xtext to recognise a function call composed of IDs and function calls divided by a dot (Java-like syntax). I.e. whatever chain composed of IDs and/or ...
2
votes
1answer
155 views

Xtext - solving ambiguity without semantic predicates?

Problem Entry : temp += (Expression | Declaration | UserType)* ; Declaration : Type '*' name=ID ';' ; Expression : temp1 = Primary ('*' temp2 += Primary)* ';' ; Primary : temp1 = ...
1
vote
1answer
145 views

XText: permit invalid cross reference

I need to build a grammer containing a cross reference, which may be invalid, i.e. points to a nonexisting target. A file containing such a reference should not yield an error, but only a warning. The ...
1
vote
1answer
68 views

SQL JOIN clause: substituting a bunch of flags with one Enum

I'm trying to implement a DSL containing some parts of SQL SELECT queries. The JOIN syntax between two tables is specified (e.g. for PostgreSQL) like this: // one of theese: [ INNER ] JOIN LEFT [ ...
1
vote
1answer
259 views

Simple Xtext editor for a part of a complex grammar

I have a complex Xtext grammar, lets say a simplified version looks like this: grammar org.xtext.example.mydsl.MyDsl with org.eclipse.xtext.common.Terminals generate myDsl ...
0
votes
0answers
169 views

Writing xText xml grammar

I am writing an xText grammar for a xml language. I always get multiple decisions errors. I know why i get them cause a Tag can contain another tag or any other content like: <xml> ...
1
vote
1answer
436 views

Error while building an xtext project with ant: Generation of the Grammar classes fails

i am developing an xtext plug-in project for an eclipse application for my Bachelor thesis. I want to do the 'Generate Xtext Artifacts" at runtime with an ant script executing the Mwe2Launcher class ...
0
votes
1answer
307 views

Xtext rule consisting of Terminals not working

As part of a larger grammar I'm trying to define rules to describe "method calls". I ran into trouble and I think I reduced the problem to my lack of knowledge regarding Terminals. Here's a simple ...
1
vote
1answer
358 views

How can I override ML_COMMENT in Xtext?

In Xtext 2.0, ML_COMMENT is defined in org.eclipse.xtext.common.Terminals as hidden. I want to see comments in my grammar. How can I undo this?
0
votes
0answers
157 views

Xtext: Multiple-variable declaration randomly broken up to many single-variable declarations

I'm using Xtext and I am getting a weird behavior regarding the definitions of variables in my DSL. I use my DSL to define an input model, manipulate it and then serialize it as an output model. My ...
0
votes
1answer
970 views

xtext: expression/factor/term grammar

This has got to be one of those well-known examples that's somewhere on the internet, but I can't seem to find it. I'm trying to learn XText and I figured a calculator expression parser would be a ...
0
votes
2answers
652 views

Xtext list of items or only one item

I'm trying to create a grammar that would parse the following: reference: java.util.String but as well reference: {java.util.String, java.lang.Integer} In other words, I want it to parse both a ...
0
votes
1answer
122 views

Ensure entries in ParserRule are comma separated

I have written following ParserRule in my Xtext grammar file: TestSpec: '{' ...... (('"my"' ':' myValue=(MySpec) (',' | '}'))?) & ...... '}' MySpec: '{' ( (('"suffix"' ':' ...
2
votes
2answers
570 views

How to make Enum literal case insensitive in Xtext

I have defined an EnumRule like following in my Xtext grammar file: enum MySpec_directionEnum: left='"left"' | right='"right"' | none='"none"'; With this rule the allowed enum values are "left", ...
1
vote
1answer
136 views

Stripping actions from ANTLR grammar changes its parsing algorithm

I have a grammar Foo.xtext (too complex to include it here). Xtext generates InternalFoo.g from it. After some tweaking it also generates DebugInternalFoo.g which claims to be the same thing without ...
0
votes
2answers
227 views

Creating Ant Build files for Xtext projects

I want to generate a build.xml file for my XText projects to create the jars for them. I tried to do it by File -> Export -> Generate Ant Build files. When I try to run this command to produce ...
4
votes
1answer
718 views

Left-factoring grammar of coffeescript expressions

I'm writing an Antlr/Xtext parser for coffeescript grammar. It's at the beginning yet, I just moved a subset of the original grammar, and I am stuck with expressions. It's the dreaded "rule ...
0
votes
1answer
101 views

Is it possible to concatenate rules in Xtext?

I have a language with a set of keywords in the following form: MyWord1 MyWord2 ... MyWord500 Like "MyWord", there are several other keywords with the same range of 500 allowable values. How could ...
0
votes
1answer
95 views

Generate names for nested element

I have a grammar like this: Entity: 'entity' name=ID '{' (properties+=Property)* (revision=Revision)? '}' Revision: 'revision' '{' (properties+=Property)+ ...
7
votes
3answers
1k views

Xtext: grammar for language with significant/semantic whitespace

How can I use Xtext to parse languages with semantic whitespace? I'm trying to write a grammar for CoffeeScript and I can't find any good documentation on this.
0
votes
1answer
328 views

XTEXT: rule for preprocessor instructions

i'm trying to write a rule for preprocessor instructions in XText. currently i implemented it like this way: preproc: type=PREPROCESSOR_INCLUDE_TYPE val=(STRING | PREPROCESSOR_INCLUDE_VAL)| ...
2
votes
1answer
1k views

Translate ANTLR grammar into XText grammar: how to remove syntactic predicates

I'm new to both Xtext and ANTLR. I need to translate an ANTLR (.g) grammar into an XTEXT (.xtext) grammar. In the ANTLR grammar there are syntactic predicates which are not supported by Xtext. Is ...
1
vote
1answer
2k views

XText: use custom terminals definitions

I'm totally new to XText. When you define a grammar using XText you could specify a second grammar and use the definitions it declares as it is said here: grammar ...
1
vote
2answers
231 views

Translate some metalanguage into Java

I'm about to make kind of converter from math expression into java code. Are there any existing converters? Which technologies should I use? I have already investigated XTEXT, but I think it's a ...
0
votes
1answer
235 views

Xtext: Building type map while parsing

In Xtext, how can I build a type map (i.e. a Java map) from the type declarations in my model file? Say my model file looks like this: type String { ...some definitions... } type Foo { ...some ...
3
votes
1answer
106 views

Make either a reference or a terminal accessible through the same element name in Xtext/Xpand?

I have an Xtext grammar that describes statemachines, and I have been using references to previously declared events and states to describe transitions: Event: 'event' name=ID ; State: 'state' ...