blob: 61f75c7d1865911d05df45645b87d29205676b98 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
/*
* Bug 387465 - Incorrect string evaluations with Rhino 1.7R4
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=387465
*/
var s = "a"; //line 1
s += "a"; // debugger shows that s is undefined here
s = "b";