mirror of https://github.com/tc39/test262.git
36 lines
786 B
JavaScript
36 lines
786 B
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
info: |
|
|
Type(x) and Type(y) are String-s.
|
|
Return true, if x and y are exactly the same sequence of characters; otherwise, return false
|
|
es5id: 11.9.4_A5
|
|
description: x and y are primitive strings
|
|
---*/
|
|
|
|
//CHECK#1
|
|
if (!("" === "")) {
|
|
throw new Test262Error('#1: "" === ""');
|
|
}
|
|
|
|
//CHECK#2
|
|
if (!(" " === " ")) {
|
|
throw new Test262Error('#2: " " === " "');
|
|
}
|
|
|
|
//CHECK#3
|
|
if (!("string" === "string")) {
|
|
throw new Test262Error('#3: "string" === "string"');
|
|
}
|
|
|
|
//CHECK#4
|
|
if (" string" === "string ") {
|
|
throw new Test262Error('#4: " string" !== "string "');
|
|
}
|
|
|
|
//CHECK#5
|
|
if ("1.0" === "1") {
|
|
throw new Test262Error('#5: "1.0" !== "1"');
|
|
}
|