Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.xtend.middleend.xtend/src/org/eclipse/xtend/middleend/xtend/internal/xtendlib/XtendLibNames.java')
-rw-r--r--plugins/org.eclipse.xtend.middleend.xtend/src/org/eclipse/xtend/middleend/xtend/internal/xtendlib/XtendLibNames.java27
1 files changed, 27 insertions, 0 deletions
diff --git a/plugins/org.eclipse.xtend.middleend.xtend/src/org/eclipse/xtend/middleend/xtend/internal/xtendlib/XtendLibNames.java b/plugins/org.eclipse.xtend.middleend.xtend/src/org/eclipse/xtend/middleend/xtend/internal/xtendlib/XtendLibNames.java
new file mode 100644
index 00000000..e4e1a21e
--- /dev/null
+++ b/plugins/org.eclipse.xtend.middleend.xtend/src/org/eclipse/xtend/middleend/xtend/internal/xtendlib/XtendLibNames.java
@@ -0,0 +1,27 @@
+/*
+Copyright (c) 2008 Arno Haase.
+All rights reserved. This program and the accompanying materials
+are made available under the terms of the Eclipse Public License v1.0
+which accompanies this distribution, and is available at
+http://www.eclipse.org/legal/epl-v10.html
+
+Contributors:
+ Arno Haase - initial API and implementation
+ */
+package org.eclipse.xtend.middleend.xtend.internal.xtendlib;
+
+
+/**
+ *
+ * @author Arno Haase (http://www.haase-consulting.com)
+ */
+public interface XtendLibNames {
+ String FOREACH_WITHOUT_ITERATOR = "XpandForEach";
+ String FOREACH_WITH_ITERATOR = "XpandForEachWithIterator";
+
+ String DELETE_LINE_INIT = "XpandInitNewScope";
+ String DELETE_LINE_REGISTER = "XpandRegisterDeleteLine";
+ String DELETE_LINE_POSTPROCESS = "XpandPostprocess";
+
+ String GLOBAL_VAR_VALUE = "XtendGlobalVar";
+}

Back to the top