Pārlūkot izejas kodu

[java] Fixed haxe.Template mistyped function; Closes #1897

Caue Waneck 12 gadi atpakaļ
vecāks
revīzija
9957b29dc6
1 mainītis faili ar 7 papildinājumiem un 7 dzēšanām
  1. 7 7
      std/haxe/Template.hx

+ 7 - 7
std/haxe/Template.hx

@@ -45,7 +45,7 @@ private typedef ExprToken = {
 /**
 /**
 	Template provides a basic templating mechanism to replace values in a source
 	Template provides a basic templating mechanism to replace values in a source
 	String, and to have some basic logic.
 	String, and to have some basic logic.
-	
+
 	A complete documentation of the supported syntax is available at:
 	A complete documentation of the supported syntax is available at:
 	http://haxe.org/doc/cross/template
 	http://haxe.org/doc/cross/template
 **/
 **/
@@ -71,12 +71,12 @@ class Template {
 
 
 	/**
 	/**
 		Creates a new Template instance from `str`.
 		Creates a new Template instance from `str`.
-		
+
 		`str` is parsed into tokens, which are stored for internal use. This
 		`str` is parsed into tokens, which are stored for internal use. This
 		means that multiple execute() operations on a single Template instance
 		means that multiple execute() operations on a single Template instance
 		are more efficient than one execute() operations on multiple Template
 		are more efficient than one execute() operations on multiple Template
 		instances.
 		instances.
-		
+
 		If `str` is null, the result is unspecified.
 		If `str` is null, the result is unspecified.
 	**/
 	**/
 	public function new( str : String ) {
 	public function new( str : String ) {
@@ -89,16 +89,16 @@ class Template {
 	/**
 	/**
 		Executes `this` Template, taking into account `context` for
 		Executes `this` Template, taking into account `context` for
 		replacements and `macros` for callback functions.
 		replacements and `macros` for callback functions.
-		
+
 		If `context` has a field 'name', its value replaces all occurrences of
 		If `context` has a field 'name', its value replaces all occurrences of
 		::name:: in the Template. Otherwise Template.globals is checked instead,
 		::name:: in the Template. Otherwise Template.globals is checked instead,
 		If 'name' is not a field of that either, ::name:: is replaced with null.
 		If 'name' is not a field of that either, ::name:: is replaced with null.
-		
+
 		If `macros` has a field 'name', all occurrences of $$name(args) are
 		If `macros` has a field 'name', all occurrences of $$name(args) are
 		replaced with the result of calling that field. The first argument is
 		replaced with the result of calling that field. The first argument is
 		always the the resolve() method, followed by the given arguments.
 		always the the resolve() method, followed by the given arguments.
 		If `macros` has no such field, the result is unspecified.
 		If `macros` has no such field, the result is unspecified.
-		
+
 		If `context` is null, the result is unspecified. If `macros` is null,
 		If `context` is null, the result is unspecified. If `macros` is null,
 		no macros are used.
 		no macros are used.
 	**/
 	**/
@@ -237,7 +237,7 @@ class Template {
 		}
 		}
 		if( data.length != 0 )
 		if( data.length != 0 )
 			l.add({ p : data, s : true });
 			l.add({ p : data, s : true });
-		var e;
+		var e:Void->Dynamic;
 		try {
 		try {
 			e = makeExpr(l);
 			e = makeExpr(l);
 			if( !l.isEmpty() )
 			if( !l.isEmpty() )