/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
deps/v8/src/objects/oddball.tq
39 строк
1000 B
Michaël Zasso
deps: update V8 to 12.2.281.27
31 мар 2024, 16:36
Не верифицирован
31 мар 2024, 16:36
09a8440
Код
Авторство
О чём код?
// Copyright 2019 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @cppObjectLayoutDefinition @apiExposedInstanceTypeValue(0x83) @highestInstanceTypeWithinParentClassRange extern class Oddball extends PrimitiveHeapObject { to_number_raw: float64; to_string: String; to_number: Number; type_of: String; kind: Smi; } @cppObjectLayoutDefinition @hasSameInstanceTypeAsParent @doNotGenerateCast extern class Null extends Oddball {} @cppObjectLayoutDefinition @hasSameInstanceTypeAsParent @doNotGenerateCast extern class Undefined extends Oddball {} @cppObjectLayoutDefinition @hasSameInstanceTypeAsParent @doNotGenerateCast extern class Boolean extends Oddball {} @cppObjectLayoutDefinition @hasSameInstanceTypeAsParent @doNotGenerateCast extern class True extends Boolean {} @cppObjectLayoutDefinition @hasSameInstanceTypeAsParent @doNotGenerateCast extern class False extends Boolean {}