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

Unified Diff: src/elements-kind.h

Issue 546683003: Make KeyedLoads from a sloppy arguments array use a handler. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed comment. Created 6 years, 3 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
Index: src/elements-kind.h
diff --git a/src/elements-kind.h b/src/elements-kind.h
index b48a5dfe024ddc1906d123d8fee7cd8d02b54464..fb973411eccb3f07a989d132b66bc7e4bed30678 100644
--- a/src/elements-kind.h
+++ b/src/elements-kind.h
@@ -87,6 +87,11 @@ inline bool IsDictionaryElementsKind(ElementsKind kind) {
}
+inline bool IsSloppyArgumentsElements(ElementsKind kind) {
+ return kind == SLOPPY_ARGUMENTS_ELEMENTS;
+}
+
+
inline bool IsExternalArrayElementsKind(ElementsKind kind) {
return kind >= FIRST_EXTERNAL_ARRAY_ELEMENTS_KIND &&
kind <= LAST_EXTERNAL_ARRAY_ELEMENTS_KIND;

Powered by Google App Engine
This is Rietveld 408576698