summaryrefslogtreecommitdiffstats
path: root/JavaScriptCore/parser/ParserArena.h
diff options
context:
space:
mode:
Diffstat (limited to 'JavaScriptCore/parser/ParserArena.h')
-rw-r--r--JavaScriptCore/parser/ParserArena.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/JavaScriptCore/parser/ParserArena.h b/JavaScriptCore/parser/ParserArena.h
index eef8e93..7c1809e 100644
--- a/JavaScriptCore/parser/ParserArena.h
+++ b/JavaScriptCore/parser/ParserArena.h
@@ -55,7 +55,7 @@ namespace JSC {
inline const Identifier& IdentifierArena::makeNumericIdentifier(JSGlobalData* globalData, double number)
{
- m_identifiers.append(Identifier(globalData, UString::from(number)));
+ m_identifiers.append(Identifier(globalData, UString::number(number)));
return m_identifiers.last();
}