Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsefftinge2008-03-03 13:54:08 +0000
committersefftinge2008-03-03 13:54:08 +0000
commit3cb953136214032fa13518ceddbb6de1d4ab2192 (patch)
tree73418922f4c4ae04065361f6d19a39c21474a067
parentcf0aa0c7e66c02e8ba262ad0f0d14ee9e4f6c904 (diff)
downloadorg.eclipse.xpand-3cb953136214032fa13518ceddbb6de1d4ab2192.tar.gz
org.eclipse.xpand-3cb953136214032fa13518ceddbb6de1d4ab2192.tar.xz
org.eclipse.xpand-3cb953136214032fa13518ceddbb6de1d4ab2192.zip
*** empty log message ***
-rw-r--r--plugins/org.eclipse.xpand3/src/org/eclipse/xand3/analyzation/typesystem/TypeSystemFacade.java8
1 files changed, 2 insertions, 6 deletions
diff --git a/plugins/org.eclipse.xpand3/src/org/eclipse/xand3/analyzation/typesystem/TypeSystemFacade.java b/plugins/org.eclipse.xpand3/src/org/eclipse/xand3/analyzation/typesystem/TypeSystemFacade.java
index 4e4c2737..7477b9f9 100644
--- a/plugins/org.eclipse.xpand3/src/org/eclipse/xand3/analyzation/typesystem/TypeSystemFacade.java
+++ b/plugins/org.eclipse.xpand3/src/org/eclipse/xand3/analyzation/typesystem/TypeSystemFacade.java
@@ -49,9 +49,7 @@ public interface TypeSystemFacade {
Type typeForName(String name);
/**
- * this is like currying for generic types
- * just pass an unbound type and the compatible type arguments and you'll get a new
- * (partly) bound instance of that type.
+ * creates a type for a declared type and the needed arguments
* @param type - the type to be instantiated
* @param args
* @return
@@ -66,9 +64,7 @@ public interface TypeSystemFacade {
Function functionForNameAndParameterTypes(String name, Type[]... paramTypes);
/**
- * this is like currying for generic functions
- * just pass an unbound functions and the compatible type arguments and you'll get a new
- * (partly) bound instance of that function.
+ * creates a function for a declared function and the needed arguments
* @param f - the function to be instantiated
* @param args - the type arguments
* @return

Back to the top