mirror of
https://github.com/bendtherules/ask262.git
synced 2026-08-19 00:31:06 +00:00
Merge commit '6e92d2345e8231a44556ce7d416451f5f3e6c398' as 'engine262'
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
/** https://tc39.es/ecma262/#sec-numericvalue */
|
||||
import type { ParseNode } from '../parser/ParseNode.mts';
|
||||
import { Value } from '../value.mts';
|
||||
|
||||
export function NumericValue(node: ParseNode.NumericLiteral) {
|
||||
return Value(node.value);
|
||||
}
|
||||
Reference in New Issue
Block a user