mirror of https://github.com/tc39/test262.git
23 lines
573 B
JavaScript
23 lines
573 B
JavaScript
// Copyright (C) 2019 Leo Balter. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
esid: sec-multiplicative-operators-runtime-semantics-evaluation
|
|
description: No ASI happening in identifier used as operands
|
|
info: |
|
|
MultiplicativeExpression[Yield, Await]:
|
|
ExponentiationExpression
|
|
MultiplicativeExpression MultiplicativeOperator ExponentiationExpression
|
|
|
|
MultiplicativeOperator : one of
|
|
* / %
|
|
---*/
|
|
|
|
var instance = 60;
|
|
var of = 6;
|
|
var g = 2;
|
|
|
|
var notRegExp = instance/of/g;
|
|
|
|
assert.sameValue(notRegExp, 5);
|