| Index: src/frames-inl.h
|
| diff --git a/src/frames-inl.h b/src/frames-inl.h
|
| index af3ae3dfb6e7fb4d92d8d1887e0cdb552b3d07e8..010233a0fa2c33ec0899a991eb8965c483dba302 100644
|
| --- a/src/frames-inl.h
|
| +++ b/src/frames-inl.h
|
| @@ -1,4 +1,4 @@
|
| -// Copyright 2011 the V8 project authors. All rights reserved.
|
| +// Copyright 2012 the V8 project authors. All rights reserved.
|
| // Redistribution and use in source and binary forms, with or without
|
| // modification, are permitted provided that the following conditions are
|
| // met:
|
| @@ -77,18 +77,18 @@ inline StackHandler* StackHandler::FromAddress(Address address) {
|
| }
|
|
|
|
|
| -inline bool StackHandler::is_entry() const {
|
| - return kind() == ENTRY;
|
| +inline bool StackHandler::is_js_entry() const {
|
| + return kind() == JS_ENTRY;
|
| }
|
|
|
|
|
| -inline bool StackHandler::is_try_catch() const {
|
| - return kind() == TRY_CATCH;
|
| +inline bool StackHandler::is_catch() const {
|
| + return kind() == CATCH;
|
| }
|
|
|
|
|
| -inline bool StackHandler::is_try_finally() const {
|
| - return kind() == TRY_FINALLY;
|
| +inline bool StackHandler::is_finally() const {
|
| + return kind() == FINALLY;
|
| }
|
|
|
|
|
|
|