Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
test262
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pmaksimo
test262
Commits
f5b5ad47
Commit
f5b5ad47
authored
9 years ago
by
Leonardo Balter
Browse files
Options
Downloads
Patches
Plain Diff
Add tests for Subclassing the built-in Number Objects
parent
67ec7fbf
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
test/language/subclassing/Number/regular-subclassing.js
+23
-0
23 additions, 0 deletions
test/language/subclassing/Number/regular-subclassing.js
test/language/subclassing/Number/super-must-be-called.js
+32
-0
32 additions, 0 deletions
test/language/subclassing/Number/super-must-be-called.js
with
55 additions
and
0 deletions
test/language/subclassing/Number/regular-subclassing.js
0 → 100644
+
23
−
0
View file @
f5b5ad47
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es6id: 20.1.1
description: Subclassing the Number object
info: >
20.1.1 The Number Constructor
...
The Number constructor is designed to be subclassable. It may be used as the
value of an extends clause of a class definition. Subclass constructors that
intend to inherit the specified Number behaviour must include a super call to
the Number constructor to create and initialize the subclass instance with a
[[NumberData]] internal slot.
---*/
class
N
extends
Number
{}
var
n
=
new
N
(
42
);
assert
.
sameValue
(
n
.
toFixed
(
2
),
'
42.00
'
);
assert
.
sameValue
(
n
.
toExponential
(
2
),
'
4.20e+1
'
);
This diff is collapsed.
Click to expand it.
test/language/subclassing/Number/super-must-be-called.js
0 → 100644
+
32
−
0
View file @
f5b5ad47
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es6id: 20.1.1
description: Super need to be called to initialize internals
info: >
20.1.1 The Number Constructor
...
The Number constructor is designed to be subclassable. It may be used as the
value of an extends clause of a class definition. Subclass constructors that
intend to inherit the specified Number behaviour must include a super call to
the Number constructor to create and initialize the subclass instance with a
[[NumberData]] internal slot.
---*/
class
N
extends
Number
{
constructor
()
{}
}
assert
.
throws
(
ReferenceError
,
function
()
{
new
N
();
});
class
N2
extends
Number
{
constructor
()
{
super
();
}
}
new
N2
();
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment