File: S9.8.1_A7.js

package info (click to toggle)
qtdeclarative-opensource-src 5.15.8%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 259,256 kB
  • sloc: javascript: 512,396; cpp: 495,775; xml: 8,892; python: 3,304; ansic: 2,764; sh: 206; makefile: 62; php: 27
file content (24 lines) | stat: -rw-r--r-- 829 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: |
    If 1 <= s < 1e21 or -1e21 s < -1 and s has a fractional
    component, return the string consisting of the most significant n digits of
    the decimal representation of s, followed by a decimal point '.',
    followed by the remaining k-n digits of the decimal representation of s
es5id: 9.8.1_A7
description: >
    1.0000001 and -1.0000001 convert to String by explicit
    transformation
---*/

// CHECK#1
if (String(1.0000001) !== "1.0000001") {
  $ERROR('#1: String(1.0000001) === "1.0000001". Actual: ' + (String(1.0000001)));
}

// CHECK#2
if (String(-1.0000001) !== "-1.0000001") {
  $ERROR('#2: String(-1.0000001) === "-1.0000001". Actual: ' + (String(-1.0000001)));
}