| // Copyright 2009 the Sputnik authors. All rights reserved. |
| // This code is governed by the BSD license found in the LICENSE file. |
| For each VariableDeclaration or VariableDeclarationNoIn in the |
| code, create a property of the variable object whose name is the Identifier |
| in the VariableDeclaration or VariableDeclarationNoIn, whose value is |
| undefined and whose attributes are determined by the type of code |
| description: Checking variable existence only |
| assert.sameValue(f1(), "undefined"); |
| assert.sameValue(f2(), undefined); |