OLD | NEW |
---|---|
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // The infrastructure used for (localized) message reporting in V8. | 5 // The infrastructure used for (localized) message reporting in V8. |
6 // | 6 // |
7 // Note: there's a big unresolved issue about ownership of the data | 7 // Note: there's a big unresolved issue about ownership of the data |
8 // structures used by this framework. | 8 // structures used by this framework. |
9 | 9 |
10 #ifndef V8_MESSAGES_H_ | 10 #ifndef V8_MESSAGES_H_ |
11 #define V8_MESSAGES_H_ | 11 #define V8_MESSAGES_H_ |
12 | 12 |
13 #include "src/base/smart-pointers.h" | 13 #include "src/base/smart-pointers.h" |
14 #include "src/handles.h" | 14 #include "src/handles.h" |
15 #include "src/list.h" | 15 #include "src/list.h" |
16 #include "src/objects.h" | |
16 | 17 |
17 namespace v8 { | 18 namespace v8 { |
18 namespace internal { | 19 namespace internal { |
19 | 20 |
20 // Forward declarations. | 21 // Forward declarations. |
21 class JSMessageObject; | 22 class JSMessageObject; |
22 class LookupIterator; | 23 class LookupIterator; |
23 class SourceInfo; | 24 class SourceInfo; |
24 | 25 |
25 class MessageLocation { | 26 class MessageLocation { |
26 public: | 27 public: |
27 MessageLocation(Handle<Script> script, int start_pos, int end_pos, | 28 MessageLocation(Handle<Script> script, int start_pos, int end_pos, |
Michael Starzinger
2016/04/11 13:58:18
If it is just this constructor that requires the i
Clemens Hammacher
2016/04/11 14:08:47
It's about the default constructor below, but yes,
| |
28 Handle<JSFunction> function = Handle<JSFunction>()) | 29 Handle<JSFunction> function = Handle<JSFunction>()) |
29 : script_(script), | 30 : script_(script), |
30 start_pos_(start_pos), | 31 start_pos_(start_pos), |
31 end_pos_(end_pos), | 32 end_pos_(end_pos), |
32 function_(function) {} | 33 function_(function) {} |
33 MessageLocation() : start_pos_(-1), end_pos_(-1) { } | 34 MessageLocation() : start_pos_(-1), end_pos_(-1) { } |
34 | 35 |
35 Handle<Script> script() const { return script_; } | 36 Handle<Script> script() const { return script_; } |
36 int start_pos() const { return start_pos_; } | 37 int start_pos() const { return start_pos_; } |
37 int end_pos() const { return end_pos_; } | 38 int end_pos() const { return end_pos_; } |
(...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
516 static Handle<String> GetMessage(Isolate* isolate, Handle<Object> data); | 517 static Handle<String> GetMessage(Isolate* isolate, Handle<Object> data); |
517 static base::SmartArrayPointer<char> GetLocalizedMessage(Isolate* isolate, | 518 static base::SmartArrayPointer<char> GetLocalizedMessage(Isolate* isolate, |
518 Handle<Object> data); | 519 Handle<Object> data); |
519 }; | 520 }; |
520 | 521 |
521 | 522 |
522 } // namespace internal | 523 } // namespace internal |
523 } // namespace v8 | 524 } // namespace v8 |
524 | 525 |
525 #endif // V8_MESSAGES_H_ | 526 #endif // V8_MESSAGES_H_ |
OLD | NEW |