OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2016 the V8 project authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 // Flags: --es-staging | |
6 | |
7 class A extends Function { | |
8 constructor(...args) { | |
9 super(...args); | |
10 this.a = 42; | |
11 this.d = 4.2; | |
12 this.o = 0; | |
13 } | |
14 } | |
15 var obj = new A("'use strict';"); | |
16 obj.o = 0.1; | |
OLD | NEW |