summaryrefslogtreecommitdiffstats
path: root/rba.tool.editor/src/rba/tool/editor/scoping/internal/IMemberFeatureScopes.xtend
diff options
context:
space:
mode:
Diffstat (limited to 'rba.tool.editor/src/rba/tool/editor/scoping/internal/IMemberFeatureScopes.xtend')
-rw-r--r--rba.tool.editor/src/rba/tool/editor/scoping/internal/IMemberFeatureScopes.xtend12
1 files changed, 12 insertions, 0 deletions
diff --git a/rba.tool.editor/src/rba/tool/editor/scoping/internal/IMemberFeatureScopes.xtend b/rba.tool.editor/src/rba/tool/editor/scoping/internal/IMemberFeatureScopes.xtend
new file mode 100644
index 0000000..5d6bba7
--- /dev/null
+++ b/rba.tool.editor/src/rba/tool/editor/scoping/internal/IMemberFeatureScopes.xtend
@@ -0,0 +1,12 @@
+package rba.tool.editor.scoping.internal
+
+import org.eclipse.emf.ecore.EObject
+import org.eclipse.xtext.scoping.IScope
+import rba.tool.editor.scoping.IExpressionScope
+
+interface IMemberFeatureScopes {
+
+ def IScope createFeatureScope(EObject model);
+
+ def IScope createFeatureScope(EObject model, IExpressionScope.Anchor anchor, IScope outer);
+}