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

Unified Diff: include/v8.h

Issue 200056: Made function prototype property DontEnum for compatibility with (Closed)
Patch Set: Created 11 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
« no previous file with comments | « no previous file | src/bootstrapper.cc » ('j') | test/mjsunit/function-prototype.js » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/v8.h
diff --git a/include/v8.h b/include/v8.h
index 8cd49f8b29f1b2ac5c2d934da924064cc838631b..2789bad21646b84a81fe02402887817d91ffac49 100644
--- a/include/v8.h
+++ b/include/v8.h
@@ -1024,8 +1024,8 @@ class V8EXPORT String : public Primitive {
public:
explicit Value(Handle<v8::Value> obj);
~Value();
- uint16_t* operator*() const { return str_; }
- const uint16_t* operator*() { return str_; }
+ uint16_t* operator*() { return str_; }
+ const uint16_t* operator*() const { return str_; }
int length() const { return length_; }
private:
uint16_t* str_;
« no previous file with comments | « no previous file | src/bootstrapper.cc » ('j') | test/mjsunit/function-prototype.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698