| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index bf6ad3d4d7a3ee08a516a967f1687031530975e9..296d52117fe55312b0812c0e1f2c9521a2b82aad 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -8139,6 +8139,15 @@ class JSMessageObject: public JSObject {
|
| inline int end_position() const;
|
| inline void set_end_position(int value);
|
|
|
| + int GetLineNumber() const;
|
| +
|
| + // Returns the offset of the given position within the containing line.
|
| + int GetColumnNumber() const;
|
| +
|
| + // Returns the source code line containing the given source
|
| + // position, or the empty string if the position is invalid.
|
| + Handle<String> GetSourceLine() const;
|
| +
|
| DECLARE_CAST(JSMessageObject)
|
|
|
| // Dispatched behavior.
|
|
|