blob: 658de38aa60ee47f16f1368d092eddd84215e09f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: >
Values that are strictly equal satisfy the assertion.
---*/
var obj;
assert.sameValue(undefined, undefined);
assert.sameValue(null, null);
assert.sameValue(0, 0);
assert.sameValue(1, 1);
assert.sameValue('', '');
assert.sameValue('s', 's');
obj = {};
assert.sameValue(obj, obj);
reportCompare(0, 0);
|