Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(661)

Unified Diff: src/ast-value-factory.h

Issue 932333004: [strong] Deprecate arguments (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Comments Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/messages.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ast-value-factory.h
diff --git a/src/ast-value-factory.h b/src/ast-value-factory.h
index 294a2818590d6486e3e4c0a4d197ea5d57d3d27b..fe333254bb7bc3d341a1018a8f5b95ce9cbc10bd 100644
--- a/src/ast-value-factory.h
+++ b/src/ast-value-factory.h
@@ -88,8 +88,6 @@ class AstRawString : public AstString {
return *c;
}
- V8_INLINE bool IsArguments(AstValueFactory* ast_value_factory) const;
-
// For storing AstRawStrings in a hash map.
uint32_t hash() const {
return hash_;
@@ -357,11 +355,6 @@ class AstValueFactory {
OTHER_CONSTANTS(F)
#undef F
};
-
-
-bool AstRawString::IsArguments(AstValueFactory* ast_value_factory) const {
- return ast_value_factory->arguments_string() == this;
-}
} } // namespace v8::internal
#undef STRING_CONSTANTS
« no previous file with comments | « no previous file | src/messages.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698