From 278ac258df7e09b1758b3b4ce01d8cb28dd5445e Mon Sep 17 00:00:00 2001 From: Ingvar Stepanyan Date: Wed, 30 Jul 2014 01:48:34 +0300 Subject: [PATCH] Moved `inTemplate` initializer to appropriate place. --- acorn.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acorn.js b/acorn.js index a57dc613ba..e506ad4fe1 100644 --- a/acorn.js +++ b/acorn.js @@ -236,7 +236,7 @@ // Template String. If it is, it should treat '$' as prefix before // '{expression}' and everything else as string literals. - var inTemplate = false; + var inTemplate; // This function is used to raise exceptions on parse errors. It // takes an offset integer (into the current `input`) to indicate