blob: 49ddecb379ccb3272be5696974dec8d360e35e50 [file] [log] [blame]
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-typeof-operator-runtime-semantics-evaluation
description: Operator "typeof" uses GetValue
info: |
The typeof Operator
Runtime Semantics: Evaluation
...
Set val to ? GetValue(val).
...
GetValue ( V ):
...
If IsUnresolvableReference(V) is true, throw a ReferenceError exception.
---*/
assert.throws(ReferenceError, function() {
typeof x.x;
});