From ce0b30dba6f4f6ef1fd17263f4087a88a3578369 Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Sat, 19 Mar 2016 14:49:54 -0400 Subject: [PATCH] Fix code generation problem --- js/compiler/compiler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/compiler/compiler.js b/js/compiler/compiler.js index 1047592..a6f7193 100644 --- a/js/compiler/compiler.js +++ b/js/compiler/compiler.js @@ -187,7 +187,7 @@ var modifiedSourceActions = { return buildCaseEvent(eventPattern, block.asES5); }, FacetStateTransition_noContinuation: function(_case, eventPattern, _sc) { - return buildCaseEvent(eventPattern, ''); + return buildCaseEvent(eventPattern, '{}'); } };