From 97bbcab77d5849e54d321a2c03cf66e14a560ae8 Mon Sep 17 00:00:00 2001 From: Alexey Tsvetkov Date: Sun, 26 Oct 2014 18:34:32 +0300 Subject: [PATCH] JS parser: added description string to constructor arguments --- js/js.parser/src/com/google/gwt/dev/js/JsParser.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/js.parser/src/com/google/gwt/dev/js/JsParser.java b/js/js.parser/src/com/google/gwt/dev/js/JsParser.java index 03feb35e048..353bd2edf9b 100644 --- a/js/js.parser/src/com/google/gwt/dev/js/JsParser.java +++ b/js/js.parser/src/com/google/gwt/dev/js/JsParser.java @@ -618,7 +618,7 @@ public class JsParser { // Create it, and set the params. // - JsFunction toFn = new JsFunction(getScope()); + JsFunction toFn = new JsFunction(getScope(), "jsCode"); // Creating a function also creates a new scope, which we push onto // the scope stack.