use of org.eclipse.xtend.type.impl.java.JavaBeansMetaModel in project dsl-devkit by dsldevkit.
the class CodeGenerationXTest method beforeAllTests.
@Override
protected void beforeAllTests() {
super.beforeAllTests();
final ExecutionContextImpl executionContext = new ExecutionContextImpl();
executionContext.registerMetaModel(new JavaBeansMetaModel());
executionContext.registerMetaModel(new EmfRegistryMetaModel());
final CompilationContext context = new CompilationContext(executionContext, new GenModelUtilX());
getTestInformation().putTestObject(CompilerX.class, new CompilerX(context));
}
use of org.eclipse.xtend.type.impl.java.JavaBeansMetaModel in project dsl-devkit by dsldevkit.
the class CompilationContextTest method analyze.
@Test
public void analyze() {
ExecutionContextImpl executionContext = new ExecutionContextImpl();
executionContext.registerMetaModel(new JavaBeansMetaModel());
final CompilationContext context = new CompilationContext(executionContext, null);
Type expectedType = executionContext.getTypeForName("Integer");
assertSame("Cannot analyze Integer", expectedType, context.analyze("1 + 3"));
expectedType = executionContext.getTypeForName("Real");
assertSame("Cannot analyze Real", expectedType, context.analyze("1 + 3.33"));
expectedType = executionContext.getTypeForName("String");
assertSame("Cannot analyse String 'foo'", expectedType, context.analyze("\'foo\'"));
assertSame("Cannot analyse String \"foo \" ", expectedType, context.analyze("\"foo\""));
assertSame("Cannot analyse String \"foo\" + \'bar\'", expectedType, context.analyze("\"foo\" + \'bar\'"));
}
use of org.eclipse.xtend.type.impl.java.JavaBeansMetaModel in project dsl-devkit by dsldevkit.
the class CompilationContextTest method isExtension.
@Test
public void isExtension() {
ExecutionContextImpl executionContext = new ExecutionContextImpl();
executionContext.registerMetaModel(new JavaBeansMetaModel());
ExtensionFile extensionFile = ParseFacade.file(new InputStreamReader(getClass().getResourceAsStream("/com/avaloq/tools/ddk/xtext/generator/expression/TestExtensions.ext")), "TestExtensions.ext");
executionContext = (ExecutionContextImpl) executionContext.cloneWithResource(extensionFile);
final CompilationContext context = new CompilationContext(executionContext, null);
assertTrue("test extension not identified", context.isExtension("test"));
}
use of org.eclipse.xtend.type.impl.java.JavaBeansMetaModel in project xtext-core by eclipse.
the class XtendXtext2EcorePostProcessor method getExecutionContext.
/**
* @param metamodel
* the metamodel to augment
* @return the executionContext used to perform the xtend processing
*/
protected ExecutionContext getExecutionContext(GeneratedMetamodel metamodel) {
if (executionContext == null) {
ExecutionContextImpl executionContext = new ExecutionContextImpl();
executionContext.registerMetaModel(new EmfRegistryMetaModel());
executionContext.registerMetaModel(new JavaBeansMetaModel());
this.executionContext = executionContext;
}
return executionContext;
}
use of org.eclipse.xtend.type.impl.java.JavaBeansMetaModel in project applause by applause.
the class ApplauseDslProjectCreator method enhanceProject.
protected void enhanceProject(final IProject project, final IProgressMonitor monitor) throws CoreException {
OutputImpl output = new OutputImpl();
output.addOutlet(new Outlet(false, getEncoding(), null, true, project.getLocation().makeAbsolute().toOSString()));
XpandExecutionContextImpl execCtx = new XpandExecutionContextImpl(output, null);
execCtx.getResourceManager().setFileEncoding("ISO-8859-1");
execCtx.registerMetaModel(new JavaBeansMetaModel());
XpandFacade facade = XpandFacade.create(execCtx);
facade.evaluate("org::applause::lang::ui::wizard::ApplauseDslNewProject::main", getProjectInfo());
project.refreshLocal(IResource.DEPTH_INFINITE, monitor);
}
Aggregations