mirror of https://github.com/tc39/test262.git
id => esid
This commit is contained in:
parent
2a112a3190
commit
2a962f74be
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: If exponent is NaN, the result is NaN.
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
---*/
|
||||
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: If abs(base) < 1 and exponent is −∞, the result is +∞.
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
---*/
|
||||
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: If base is +∞ and exponent > 0, the result is +∞.
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
---*/
|
||||
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: If base is +∞ and exponent < 0, the result is +0.
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
---*/
|
||||
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: If base is −∞ and exponent > 0 and exponent is an odd integer, the result is −∞.
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
---*/
|
||||
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: If base is −∞ and exponent > 0 and exponent is not an odd integer, the result is +∞.
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
---*/
|
||||
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: If base is −∞ and exponent < 0 and exponent is an odd integer, the result is −0.
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
---*/
|
||||
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: If base is −∞ and exponent < 0 and exponent is not an odd integer, the result is +0.
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
---*/
|
||||
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: If base is +0 and exponent > 0, the result is +0.
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
---*/
|
||||
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: If base is +0 and exponent < 0, the result is +∞.
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
---*/
|
||||
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: If base is −0 and exponent > 0 and exponent is an odd integer, the result is −0.
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
---*/
|
||||
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: If exponent is +0, the result is 1, even if base is NaN.
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
---*/
|
||||
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: If base is −0 and exponent > 0 and exponent is not an odd integer, the result is +0.
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
---*/
|
||||
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: If base is −0 and exponent < 0 and exponent is an odd integer, the result is −∞.
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
---*/
|
||||
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: If base is −0 and exponent < 0 and exponent is not an odd integer, the result is +∞.
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
---*/
|
||||
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: If base < 0 and base is finite and exponent is finite and exponent is not an integer, the result is NaN.
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
---*/
|
||||
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
description: >
|
||||
Checking if Math.pow(argument1, argument2) is approbaseimatelexponent equals
|
||||
to its mathematical value on the set of 64 argument1 values and 64
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: If exponent is −0, the result is 1, even if base is NaN.
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
---*/
|
||||
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: If base is NaN and exponent is nonzero, the result is NaN.
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
---*/
|
||||
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: If abs(base) > 1 and exponent is +∞, the result is +∞.
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
---*/
|
||||
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: If abs(base) > 1 and exponent is −∞, the result is +0.
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
---*/
|
||||
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: If abs(base) is 1 and exponent is +∞, the result is NaN.
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
---*/
|
||||
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: If abs(base) is 1 and exponent is −∞, the result is NaN.
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
---*/
|
||||
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
description: If abs(base) < 1 and exponent is +∞, the result is +0.
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
---*/
|
||||
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
id: sec-math.pow
|
||||
esid: sec-math.pow
|
||||
description: >
|
||||
Math.pow.length is 2.
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
id: sec-math.pow
|
||||
esid: sec-math.pow
|
||||
description: >
|
||||
Math.pow ( base, exponent )
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
id: sec-math.pow
|
||||
esid: sec-math.pow
|
||||
description: >
|
||||
Math.pow.name is "pow".
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
description: If exponent is NaN, the result is NaN.
|
||||
---*/
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
description: If abs(base) < 1 and exponent is −∞, the result is +∞.
|
||||
---*/
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
description: If base is +∞ and exponent > 0, the result is +∞.
|
||||
---*/
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
description: If base is +∞ and exponent < 0, the result is +0.
|
||||
---*/
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
description: If base is −∞ and exponent > 0 and exponent is an odd integer, the result is −∞.
|
||||
---*/
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
description: If base is −∞ and exponent > 0 and exponent is not an odd integer, the result is +∞.
|
||||
---*/
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
description: If base is −∞ and exponent < 0 and exponent is an odd integer, the result is −0.
|
||||
---*/
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
description: If base is −∞ and exponent < 0 and exponent is not an odd integer, the result is +0.
|
||||
---*/
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
description: If base is +0 and exponent > 0, the result is +0.
|
||||
---*/
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
description: If base is +0 and exponent < 0, the result is +∞.
|
||||
---*/
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
description: If base is −0 and exponent > 0 and exponent is an odd integer, the result is −0.
|
||||
---*/
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
description: >
|
||||
If exponent is +0, the result is 1, even if base is NaN.
|
||||
---*/
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
description: If base is −0 and exponent > 0 and exponent is not an odd integer, the result is +0.
|
||||
---*/
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
description: If base is −0 and exponent < 0 and exponent is an odd integer, the result is −∞.
|
||||
---*/
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
description: If base is −0 and exponent < 0 and exponent is not an odd integer, the result is +∞.
|
||||
---*/
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
description: If base < 0 and base is finite and exponent is finite and exponent is not an integer, the result is NaN.
|
||||
---*/
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
description: >
|
||||
Checking if Math.pow(argument1, argument2) is approximately equals
|
||||
to its mathematical value on the set of 64 argument1 values and 64
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
description: >
|
||||
If exponent is −0, the result is 1, even if base is NaN.
|
||||
---*/
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
description: If base is NaN and exponent is nonzero, the result is NaN.
|
||||
---*/
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
description: If abs(base) > 1 and exponent is +∞, the result is +∞.
|
||||
---*/
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
description: If abs(base) > 1 and exponent is −∞, the result is +0.
|
||||
---*/
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
description: If abs(base) is 1 and exponent is +∞, the result is NaN.
|
||||
---*/
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
description: If abs(base) is 1 and exponent is −∞, the result is NaN.
|
||||
---*/
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
id: sec-applying-the-exp-operator
|
||||
esid: sec-applying-the-exp-operator
|
||||
description: If abs(base) < 1 and exponent is +∞, the result is +0.
|
||||
|
||||
---*/
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
author: Rick Waldron
|
||||
id: sec-assignment-operators-runtime-semantics-evaluation
|
||||
esid: sec-assignment-operators-runtime-semantics-evaluation
|
||||
description: >
|
||||
AssignmentExpression:
|
||||
LeftHandSideExpression AssignmentOperator AssignmentExpression
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
author: Rick Waldron, André Bargull
|
||||
id: sec-exp-operator-runtime-semantics-evaluation
|
||||
esid: sec-exp-operator-runtime-semantics-evaluation
|
||||
description: >
|
||||
ExponentiationExpression:
|
||||
UpdateExpression ** ExponentiationExpression
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
author: Rick Waldron
|
||||
id: sec-unary-operators
|
||||
esid: sec-unary-operators
|
||||
description: >
|
||||
ExponentiationExpression :
|
||||
UnaryExpression
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
author: Rick Waldron
|
||||
id: sec-update-expressions
|
||||
esid: sec-update-expressions
|
||||
description: >
|
||||
ExponentiationExpression :
|
||||
...
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
author: Rick Waldron
|
||||
id: sec-unary-operators
|
||||
esid: sec-unary-operators
|
||||
description: >
|
||||
ExponentiationExpression :
|
||||
UnaryExpression
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
author: Rick Waldron
|
||||
id: sec-unary-operators
|
||||
esid: sec-unary-operators
|
||||
description: >
|
||||
ExponentiationExpression :
|
||||
UnaryExpression
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
author: Rick Waldron
|
||||
id: sec-unary-operators
|
||||
esid: sec-unary-operators
|
||||
description: >
|
||||
ExponentiationExpression :
|
||||
UnaryExpression
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
author: Rick Waldron
|
||||
id: sec-unary-operators
|
||||
esid: sec-unary-operators
|
||||
description: >
|
||||
ExponentiationExpression :
|
||||
UnaryExpression
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
author: Rick Waldron
|
||||
id: sec-unary-operators
|
||||
esid: sec-unary-operators
|
||||
description: >
|
||||
ExponentiationExpression :
|
||||
UnaryExpression
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
author: Rick Waldron
|
||||
id: sec-unary-operators
|
||||
esid: sec-unary-operators
|
||||
description: >
|
||||
ExponentiationExpression :
|
||||
UnaryExpression
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
author: Rick Waldron
|
||||
id: sec-unary-operators
|
||||
esid: sec-unary-operators
|
||||
description: >
|
||||
ExponentiationExpression :
|
||||
UnaryExpression
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
author: Rick Waldron
|
||||
id: sec-exp-operator
|
||||
esid: sec-exp-operator
|
||||
description: >
|
||||
Performs exponential calculation on operands. Same algorithm as %MathPow%(base, exponent)
|
||||
---*/
|
||||
|
|
Loading…
Reference in New Issue