Tagged Questions
Xtext is a framework to develop programming or domain specific languages. It is an Eclipse project
9
votes
4answers
665 views
How can I use Eclipse's new Xtend language in my Android project?
I'd like to write Java classes in the Xtend language (simply because its way more terse), and have it compile back down into Java classes of which I can use in my Java project. Just like coffeescript. ...
8
votes
5answers
1k views
Can Xtext be used for parsing general purpose programming languages?
I'm currently developing a general-purpose agent-based programming language (its syntaxt will be somewhat inspired by Java, and we are also using object in this language).
Since the beginning of the ...
8
votes
3answers
1k views
What are the main differences between Jetbrains' MPS and Eclipse Xtext?
I have used Eclipse Xtext in several projects. I loved the ease of defining a grammar over an Ecore (meta)model and letting everything generated for you including awesome Eclipse plugin editor, but I ...
6
votes
2answers
652 views
Pros/cons of different language workbench tools such as Xtext and MPS?
Does anyone have experience working with language workbench tools such as Xtext, Spoofax, and JetBrains' MPS? I'm looking to try one out and am having a hard time finding a good comparison of the ...
6
votes
3answers
420 views
What is practical use of IDEA MPS and Eclipse Xtext
Both of those frameworks deal with meta-model:
XText (Eclipse)
MPS (JetBrain)
Do you have example of practical applications based on meta-model transformation with those tools?
5
votes
2answers
217 views
Has anybody fully implemented an XText editor in an IViewPart
Basically I need to implement a full XText editor in an IViewPart. I have most of it working based on the XText Forms Integration project. Unfortunately, this is not a full implementation on an XText ...
4
votes
4answers
104 views
Does boxing cause performance issues?
I'm working on a project in which we are producing a language which compiles to java. The framework we are using (xtext) makes prolific use of boxing in its generated code.
Specifically, if you have a ...
4
votes
1answer
410 views
What are features of ANTLR that XText Does not provide?
I just came across very nice tool Xtext to creat DSL as well as IDE for there editing. I did some search on the web and found people saying it dows not provide all the features of ANTLR. I am using ...
4
votes
1answer
129 views
DSL for pretty standard object model with a mapping to an SQL DB
I need a DSL (for Xtext) for describing a pretty standard object model:
There are entities
They have fields which can either be primitives or references to other entities
References can be 1:1, 1:N, ...
4
votes
5answers
590 views
Good resources for learning xtext?
Can anyone recommend any good resources (online or books) for learning how to use xtext ?
I know the xtext site has some pretty good tutorials but I am looking for something more detailed (Classical ...
3
votes
1answer
140 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 ...
3
votes
1answer
94 views
Can I have individual Xtend files intermingled with my Java source files in a Spring project?
In the Xtext documentation I can only find how to set up an Xtend-only project.
But I have a Spring MVC project that I want to incorporate Xtend into.
Is it possible to have individual Xtend files ...
3
votes
2answers
162 views
Is it possible to use Xtext without eclipse?
I have a DSL (implemented with ANTLR) for which I need to write a content assist/autocomplete editor. I've ported a prototype of my grammar to Xtext, and I'm quite happy with the quality of the editor ...
3
votes
2answers
281 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.
3
votes
1answer
256 views
Editor generator for ANTLR grammars?
I'm using ANTLR for creating a new general purpose programming language and I'm quite happy with it.
Due to the fact that I would like to provide good tools for ease the development of programs ...
3
votes
3answers
1k views
How can I traverse the EMF object tree generated by Xtext?
I'm using Xtext to define my DSL. Xtext generates a parser that lets me traverse the EMF model of my input DSL. I'd like to translate this EMF model into some other tree. To do this translation, I ...
3
votes
1answer
340 views
XText for EClipse & Oslo Intellipad for SQL Server then WHAT FOR .NET?
XText is a great editor and language manufacture for the DSLs in EClipse.
I thought that Intellipad is the equivalent in the .NET world, of course as all I get disappointed when Microsoft announce ...
2
votes
2answers
111 views
Own DSL with XText. Problem with unlimited brackets (“(”, “)”)
I am developing my own DSL in XText.
I want do something like this:
1 AND (2 OR (3 OR 4))
Here my current .xtext file:
grammar org.xtext.example.mydsl.MyDsl with ...
2
votes
3answers
284 views
XText2 adoption and migration
Does anyone here try to adopt xtext2 and migrate from xtext1.x to xtext2.0?
It seems xtext2 brings many new atractive features. Such as A Reusable Expression Language and Xtend: A Code Generation ...
2
votes
1answer
976 views
java.lang.OutOfMemoryError: PermGen space in Eclipse Helios
I have created an Xtext plugin in eclipse. Every time I launch it as an 'Eclipse Application' via the context menu, I get a few moments grace before the new Eclipse instance crashes. I switch back to ...
2
votes
1answer
569 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 ...
2
votes
1answer
63 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' ...
2
votes
2answers
840 views
ANTLR Operator Precedence
How is operator precedence implemented in ANTLR?
I'm using the XText/Antlr package at the moment.
Edit:
I did what sepp2k suggested, and operator precedence works now, but stuff like 3 +* also ...
2
votes
1answer
969 views
Samples from Xpand -
Can i get some good tutorials on XPand.. i need to get info on commands like LET. It would better if some one could post some samples on it.
The problem i am facing is like.. i run a "for" loop and ...
1
vote
0answers
36 views
Eclipse WTP platform HTML Editor customization
At work, it was given to me a modified WTP HTML Editor. It is the package "org.eclipse.jst.pagedesigner". We have a problem with the editor and the person that modified it does not work here anymore. ...
1
vote
1answer
51 views
Business Rules Xtext Grammar
At work we use a Business Rules language that was original designed for 'business' people to program but now has fallen on use, the programmers. The IDE/Eclipse plugin isn't what a we would call an ...
1
vote
2answers
79 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
37 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 ...
1
vote
2answers
37 views
How do I attach some cached information to an Eclipse editor or resource?
I'm developing a DSL using Eclipse's Xtext framework.
For the content assist/code completion, I have an expensive process which generates me a list of strings.
How do I cache the result of that ...
1
vote
2answers
68 views
Xtext grammar in two files
I want to put my terminals into a separate file, because I'll use an external lexer in the production version. I tried following the answer to using custom terminals definitions. So I have a ...
1
vote
0answers
137 views
DSLs - groovy versus xtext [closed]
I an well versed with Java. I have few usecases that benefit from a DSL. Before I start on building them, I would like to take input from people who already built them. Can someone help me understand ...
1
vote
2answers
142 views
Writing a custom Xtext/ANTLR lexer without a grammar file
I'm writing an Eclipse/Xtext plugin for CoffeeScript, and I realized I'll probably need to write a lexer for it by hand. CoffeeScript parser also uses a hand-written lexer to handle indentation and ...
1
vote
1answer
86 views
Correctly initializing and retrieving preferences in a Xtext-based Eclipse Plugin
I am writing an Eclipse plugin using Xtext 2. I have provided my own preferences by writing my own RootPreferencePage class:
package org.grammaticalframework.eclipse.ui.editor.preferences;
import ...
1
vote
1answer
223 views
Xtext example of a scoped object
I'm looking for an example (in XText) of how to implement code completion on an user defined objects members. As far as I can see I need to use IScope, but how all this wires together is unclear.
...
1
vote
4answers
125 views
How to configure Xtext mwe.Reader to fill the root element in a slot
I am using Xtext 2.0 with MWE 1 and XPand, but I guess the Problem for MWE 2 and XTend is exactly the same.
My Xtext grammer looks like this (excerpt):
grammer org.test.Test with ...
1
vote
0answers
150 views
XText in a RCP product
we want to provide the users of our RCP product with a textual editor for our model. Accordingly, we created an EMF model and a XText grammar. The problem is that our RCP app does not the Eclipse ...
1
vote
1answer
131 views
JVMTypes in Xtext
I am trying to create a DSL in the following syntax :
alias date java.util.Date;
so what I have in my grammar is something like this :
import "http://www.eclipse.org/xtext/common/JavaVMTypes" as ...
1
vote
2answers
57 views
Is there a standard way for creating an xml-based markup language? Similar to mxml
Are there any tools or references out there for creating an xml-based markup language? I'm mainly interested in the process for creating a markup language.
Are their existing tools or processes in ...
1
vote
1answer
64 views
How to Add Legal Syntax to Language in Eclipse
I've seen similar questions to this on StackOverflow regarding adding highlighting to a language, but what I'm concerned with is getting Eclipse (I'm guessing xtext?) to stop marking certain syntax as ...
1
vote
1answer
188 views
How to include an Xtext generated editor on an Eclipse property page?
I'm trying to include a textual editor for my DSL, which I generated using Xtext, on a property page within an Eclipse RCP application.
For example, I start with a simple Xtext grammar:
grammar ...
1
vote
0answers
47 views
Group outline nodes
I'm developing an XTEXT 2.0 plugin. I'd like to group some nodes inside my outline in a "virtual" node. Which is the right way to achieve this result?
Currently if i want to group nodes of type "A", ...
1
vote
1answer
161 views
Remove jdt dependencies from XTEXT 2.0 project
how can i remove JDT deperndencies from an XTEXT 2.0 project?
I tried to follow the hints here (comment 11) but i didn't success in removing JDT dependencies.
When I try to validate the product ...
1
vote
1answer
225 views
Xtext custom cross-references
I've been working on an Xtext-based Eclipse plugin for a language we use in-house. This language might have a statement of the form:
run : /some/file/path/foo.txt
... and ultimately I want to ...
1
vote
1answer
699 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
150 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 ...
1
vote
2answers
303 views
Actionscript 3 code beautifier for xpand (MWE2 Workflow)
I
Currently I'm developing a code generator for Java and Actionscript3.
The generator works quiet well, but the Actionscript3 code isn't really nice.
For Java, there is an existing code beautifier ...
1
vote
1answer
285 views
PHP Grammar in Xtext
I am researching processes of modernization and Web Reigieneria and I need to define grammars for PHP and XHTML to generate code XText after defining metamodels.
Has someone made some progress which ...
1
vote
1answer
104 views
Java plug-in Extension Point
I am creating a programming language in xtext and I want:
I need to know which extension point I have to choose to create my own Run-As handler in the plug-in development.
to create my handler of ...
1
vote
2answers
548 views
Why doesn't linking work in my Xtext-based DSL?
The following is the Xtext grammar for my DSL.
Model:
variableTypes=VariableTypes predicateTypes=PredicateTypes variableDeclarations=
VariableDeclarations rules=Rules;
VariableType:
name=ID;
...
1
vote
1answer
479 views
Can I use XText for a DSL involving an XML file type?
I have defined a small DSL that is mostly written in the form of different types of XML files in conjuction with some property files. This works very well but I wish to create an Eclipse Editor to ...