Xtext is a framework to develop programming or domain specific languages. It is an Eclipse project

learn more… | top users | synonyms

0
votes
1answer
8 views

Xtext - how to extend XtextDocument class

I need to extend XtextDocument class so i can add some properties to my dsl document. how can it be done? I tried to add bind to Ui Module but there is no bind for XtextDocument. thanks in advance
0
votes
1answer
5 views

get IEditorInput in xtext JavaValidator

I need to do some validation on my grammar based on the association of the file with a specific object I called MyResource. The command for opening the xtext editor is handled when user is right ...
2
votes
1answer
59 views

C++ mapping a type to its header file [closed]

I am currently developing a simple programming language for easily creating C++ projects. It lets you type in some short C++-like code and generates .h and .cpp files automatically. I need some way ...
0
votes
1answer
38 views

New Editor in Eclipse: Xtext vs. Plugin Development

I am trying to create a new editor plugin for Eclipse that I can distribute to others to help edit input files for a scientific computing program. Features I would like in the program include: ...
0
votes
0answers
84 views

XText Chained Dependencies in Type Inference

In my experiments, it appears that XText cannot resolve variable types when there is a chain of dependencies across multiple XExpression blocks. A minimal example, to illustrate. I have a grammar: ...
0
votes
1answer
68 views

Xtext: referencing existing java packages and methods

I developed a DSL which I use together with standard java code. In my DSL I can write things like this: package: packagename; method: void testMethod (int, double); What I want to do, is that the ...
0
votes
0answers
10 views

Xtext error suppression with (slightly) broken grammer declaration

I'm using a plug in for 'Pig Latin' from: http://romainr.github.io/PigEditor/ based on XText that is producing an erroneous error --- is there anyway to (permanently) suppress such errors that appear ...
0
votes
1answer
13 views

Dependencies Injection configuration for XtextDocumentProvider

I want to extend the class XtextDocumentProvider, which is created by dependencies injection of google injections. I want to extend this class in order to extend a method for internal needs but I ...
0
votes
0answers
9 views

How to customize the compare view?

I've written an Xtext plugin for a language, and now I want to customize the compare view, shown when comparing two files of that language in Eclipse. Right now, choosing to compare two files gives ...
1
vote
2answers
48 views

Including a grammar into another grammar

I would like to reuse grammar definitions. I have a grammar like this: Person: 'contact' name=ID '{' 'phone' phone=INT '}' ; I would like to have another grammar like this: include ...
0
votes
1answer
27 views

XText: Global Scope and importedURI

I am having some troubles in configuring scoping in my DSL In my mwe2 I have set // scoping and exporting API fragment = scoping.ImportURIScopingFragment {} fragment = ...
0
votes
1answer
20 views

How do I get Xtext's model from a different plugin?

I've written an Xtext-based plugin for some language. I'm now interested in creating a new independent view (as a separate plugin, though it requires my first plugin), which will interact with the ...
0
votes
1answer
24 views

get text with whitespaces when generate grammar

Is it possible to get a text with whitespaces? Example rule: rule: 'text' text+=ID+ I can obtain the text as a list and could add a whitespace programmatically for each list element, but i don't ...
0
votes
1answer
18 views

Xtext UI model validation and messaging via markers

Currently I have some validation in the main project which the UI project interprets as markers. I would like move that validation from the main project to the UI project, so that the parser is not ...
0
votes
0answers
12 views

Use an integer from xText in xPand

I'm trying to understand the process of making a dsl using xText and xPand and have the following xText file grammar org.eclipse.xtext.example.game.Game with org.eclipse.xtext.common.Terminals ...
0
votes
1answer
25 views

generated Xpand code ' editor does not contain a main type'. However I have a main method

I am trying to understand dsl code generation with xText and xPand. I have opened the statemachine xText example in eclipse and ran as a new eclipse application. I then made a java contaning a ...
0
votes
0answers
39 views

Xtext Project: Add Jar Libraries with the Project Wizard Manager into the Classpath/Referenced Libaries of the clients Project

I have been searching quite a lot for this problem, however I can't really find a proper solution or a how-to manage this one. I have written a simple DSL for generating some code via Xtext and ...
0
votes
0answers
12 views

Generating grammar for enumeration (from ecore model)

I have an enumeration in my ecore model like this: And then I generate the grammar in Xtext producing: FunctionToApply returns FunctionToApply: 'FunctionToApply' /* TODO: implement this rule and ...
0
votes
0answers
13 views

how to specify to us a name between single quotes in xtext

I am working on specifying a DSL using XTEXT. Part of the syntax is that a number of names are between single quotes or double quotes. Until now I am unsuccessful in achieving this. What will be ...
0
votes
1answer
29 views

variable should visible to only present function in xtext

My output file: reg1 { field a field b } reg2 { field c field d } FOREACH ( X IN reg1 ) { X . a } FOREACH ( Y IN reg2 ) { Now after this if I do ctrl+space I will expect only Y should pop-up. ...
0
votes
2answers
37 views

xtext: Statements in different order

I'm trying to write a xtext rule, where I can write statements in different random orders but all statements have to be saved as a list. I tried: Root: ( (entity += Entity)? & (component += ...
0
votes
0answers
34 views

Can I use Xtext for a DSL containing javascript?

I am looking at using Xtext to create an eclipse plugin for a custom language. This language is xml-like for the most part, however javascript can also be using within script tags- see below for ...
0
votes
1answer
57 views

Ecore model to Xtext

I have a complete EMF-Metamodell (ecore) created. Now I want to try Code-Generation with Xtext2, because I found somewhere that xtext2 is better for code generation than xpand. I created a new ...
2
votes
1answer
33 views

Xtext and GMF integration

First of all, I have seen many links on stackoverflow of integrating XText with GMF. The most consistent tutorial I've seen so far was: ...
0
votes
1answer
45 views

How to implement the generation gap pattern for xText?

Currently I'm modifying a project that uses xText to parse a custom DSL. I want to add functionality to the generated classes but unfortunately I failed implementing the generation gap pattern. I used ...
0
votes
1answer
35 views

how to generate code from a graphical model to a specefic api?

i am building an editor for manipulating graphical elements, each element must represent a type of element in an API Specification. The elements of the API are basicaly some classes ad interfaces, ...
0
votes
1answer
35 views

Injecting code into generated xText classes

A rule in xText called "Component" will typically generate a class "Component" in the src-gen folder. I would like to add additional methods to these classes without them being overridden every time I ...
1
vote
0answers
43 views

Xtext - Content proposal match context indentation

Using XText, is there a way to have text added with a content proposal to match the formatting (current indentation) where it is being inserted? What I do now: 1) Create a model that will be used ...
0
votes
1answer
28 views

Can plugins made with Xtext 2.3 be deployed on Eclipse 3.7 or earlier?

Xtext 2.0 was released with Eclipse Indigo (3.7). Xtext 2.3 was released with Eclipse Juno (3.8/4.2). I have developed a plugin with Xtext 2.3. I tried to install it on 3.7 but it installs Xtext ...
0
votes
1answer
25 views

Automatic handling of errors/warnings

On a linking error, I can raise appropriate diagnostic (say MyDSL.MY_APPROPRIATE_DIAGNOSTIC) and then write, in MyDSLQuickfixProvider, a quick fix for it by annotating it in this way: ...
3
votes
1answer
209 views

Eclipse Xtext Run as application - Java error

I have an xtext project, which I can generate the xtext artifacts for, and work with mwe2 generators, but it will not run as an xtext application - giving the error: # # A fatal error has been ...
0
votes
2answers
52 views

equivalent BNF-grammar of grammar written in XText

In my current project, I have written grammar in Xtext with nice functionalities. For instance, code snippet of my grammar Device: deviceName = ID ':' ('region' ':' ( deviceRegions += ...
0
votes
0answers
19 views

Couldn't resolve reference to Xbase annotation… but only sometimes

I have a DSL (annotation.xtext) for mapping JvmAnnotations: Annotation : '@' name=ID "maps" jvmAnnotation = XAnnotation '{' ...some irrelevant attributes '}' ; and another DSL ...
0
votes
1answer
21 views

String matching in Xtext

it would be a pretty general question, but my search to an answer was unfortunately not a success. What I want to know is, what would be the easiest approach to match two string objects in Xtext? I ...
1
vote
1answer
30 views

xtext inject or access RootModel into ScopeProvider

I am using Xtext 2.3.1 Within my ScopeProvider I want to use the currently parsed rootModel. How to do so? Can I inject the RootModel or can I use the context? public class MyLanguageScopeProvider ...
0
votes
1answer
34 views

Can not understant ANY_OTHER

I am trying to learn xtext, and finding ANY_OTHER totally confusing, and have few questions aboit it. I have only one production in my .xtext file. document: text = '<' ANY_OTHER* '>'; when ...
0
votes
0answers
33 views

How to read a user defined file in xtext?

I have a file that contains a list of config files. Files from the list need to have the same grammar file. As an example, I have a file "myfile.txt" that has these contents: ...
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 ...
1
vote
1answer
34 views

Additional Constructor for Xtend @Data Value Object

How can I add a secondary constructor to a Value Object (annotaded with @Data) in XTend (XText)? I have tried the following, but it doesnt compile: @Data class Dependency { val String groupId; ...
1
vote
1answer
48 views

Validate number of function parameters in XText

I have in my DSL a prototype: prototype function SaySomething(String Words); prototype function SayHelloLanguage(String Language, String Words); I want to validate that when you call one of those ...
0
votes
1answer
96 views

Xtext (DSL file) to Ecore

I have an Xtext project and a couple of sample DSL files. I can open these files with "Sample Ecore Model Editor" and validate that it conforms to the metamodel generated by Xtext. However, I cannot ...
0
votes
1answer
42 views

xext grammar with chosen predicates

I am trying to understand a xtext grammar I have found (below). I have two questions: The XFeatureCall has return Type XExpression but this is overruled by {XFeatureCall} so I could set "returns ...
3
votes
1answer
122 views

Xtext Integration with GMF

I see xtex can be integrated with gmf, but I can't find any tutorial, explanation or example code. Is there any explanation about how to do this? And I want to ask... Can I create an xtext project ...
3
votes
1answer
114 views

xtext comma separated variable declaration

I try to define some XText for specifiying variables according to following syntax variables MyVar1 : Bool at 0x020 value=true; MyVar2, MyVar3 : Int at 0x030 value 200; end-variables So each ...
2
votes
1answer
49 views

How to resolve “generated package may not be empty” error

I have a grammar called leach.xtext and when I put this into Xtext in my file myDsl.xtext I'm getting the following error: Generated package 'leach' may not be empty. By looking at other ...
0
votes
1answer
35 views

Xtend model data access from top level (Code generation)

If I have an Xtext grammar like the one below: grammar org.xtext.example.mydsl.ServerGeneratorLanguage with org.eclipse.xtext.common.Terminals generate serverGeneratorLanguage ...
0
votes
0answers
31 views

use static imports in xbase

I am studying the scripting sample from xtend' 7 languages. Now I want to add static import to the DSL to access static members like math cos or sin. When I edit the WordCount.script sample and add a ...
1
vote
1answer
74 views

Some features of Xtext-based editor don't work on files outside a project

I've written an Xtext-based plugin which works well when I open files inside one of the projects in my workspace; however, when I open a file outside the workspace (via File -> Open File...), some of ...
1
vote
2answers
50 views

create comma-separated list in xtend

I am learning xtend. What would be a nice way to create a comma separated list in xtend? (something like the SEPARATOR in xpand) I want to produce a comma separated list of parameters in my ...
1
vote
3answers
28 views

how to use the script xtext name in generator

I want to use the script-name in the generator to create the corresponding java file. For example if my script file would be "WordCount.script" I want to create a "WordCount.java" file. I found out ...

1 2 3 4 5 7