Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEd Merks2012-10-10 14:28:00 +0000
committerEd Merks2012-10-10 14:28:00 +0000
commit6a89cafaa285f93f8d331410ca0d827fb165fd8a (patch)
treea9f07de7ffc8bf9888490ee93e601ba62e80c857 /tests/org.eclipse.emf.test.ecore.xcore/src/org/eclipse/emf/test
parent821bc21b0698c14bcd1472fae2b92b5515bd8981 (diff)
downloadorg.eclipse.emf-6a89cafaa285f93f8d331410ca0d827fb165fd8a.tar.gz
org.eclipse.emf-6a89cafaa285f93f8d331410ca0d827fb165fd8a.tar.xz
org.eclipse.emf-6a89cafaa285f93f8d331410ca0d827fb165fd8a.zip
[390835] Provide support for Xcore extensions. This includes additional
utilities in ECollections and a fix to BasicEMap.equals.
Diffstat (limited to 'tests/org.eclipse.emf.test.ecore.xcore/src/org/eclipse/emf/test')
-rw-r--r--tests/org.eclipse.emf.test.ecore.xcore/src/org/eclipse/emf/test/ecore/xcore/interpreter/XcoreInterpreterTest.xtend4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/org.eclipse.emf.test.ecore.xcore/src/org/eclipse/emf/test/ecore/xcore/interpreter/XcoreInterpreterTest.xtend b/tests/org.eclipse.emf.test.ecore.xcore/src/org/eclipse/emf/test/ecore/xcore/interpreter/XcoreInterpreterTest.xtend
index 88188a0a0..58b3b5de5 100644
--- a/tests/org.eclipse.emf.test.ecore.xcore/src/org/eclipse/emf/test/ecore/xcore/interpreter/XcoreInterpreterTest.xtend
+++ b/tests/org.eclipse.emf.test.ecore.xcore/src/org/eclipse/emf/test/ecore/xcore/interpreter/XcoreInterpreterTest.xtend
@@ -147,8 +147,8 @@ class XcoreInterpreterTest {
transient volatile derived readonly NodeKind nodeKind
get
{
- if (hasChildren()) {if (parent == null) {NodeKind::ROOT} else {NodeKind::INTERMEDIATE}}
- else {if (parent == null) {NodeKind::SINGLETON} else {NodeKind::LEAF}}
+ if (hasChildren()) {if (parent == null) {NodeKind::ROOT_LITERAL} else {NodeKind::INTERMEDIATE_LITERAL}}
+ else {if (parent == null) {NodeKind::SINGLETON_LITERAL} else {NodeKind::LEAF_LITERAL}}
}
}
''')

Back to the top