| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index 174f43d82ad9512554d85bfd7940a5599fd0e7f5..eaffce41ed44f05725a00b9297f7ee6aa3808bdd 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -3026,10 +3026,11 @@ class SymbolTable: public HashTable<SymbolTableShape, HashTableKey*> {
|
| // added. The return value is the symbol table which might have
|
| // been enlarged. If the return value is not a failure, the symbol
|
| // pointer *s is set to the symbol found.
|
| - MUST_USE_RESULT MaybeObject* LookupSymbol(Vector<const char> str, Object** s);
|
| - MUST_USE_RESULT MaybeObject* LookupAsciiSymbol(Vector<const char> str,
|
| - Object** s);
|
| - MUST_USE_RESULT MaybeObject* LookupSubStringAsciiSymbol(
|
| + MUST_USE_RESULT MaybeObject* LookupUtf8Symbol(Vector<const char> str,
|
| + Object** s);
|
| + MUST_USE_RESULT MaybeObject* LookupOneByteSymbol(Vector<const char> str,
|
| + Object** s);
|
| + MUST_USE_RESULT MaybeObject* LookupSubStringOneByteSymbol(
|
| Handle<SeqOneByteString> str,
|
| int from,
|
| int length,
|
|
|