summaryrefslogtreecommitdiff
path: root/chromium/v8/src/parsing/pending-compilation-error-handler.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/v8/src/parsing/pending-compilation-error-handler.h')
-rw-r--r--chromium/v8/src/parsing/pending-compilation-error-handler.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/chromium/v8/src/parsing/pending-compilation-error-handler.h b/chromium/v8/src/parsing/pending-compilation-error-handler.h
index 5efb5a43a48..31e765d5145 100644
--- a/chromium/v8/src/parsing/pending-compilation-error-handler.h
+++ b/chromium/v8/src/parsing/pending-compilation-error-handler.h
@@ -53,15 +53,15 @@ class PendingCompilationErrorHandler {
bool has_pending_warnings() const { return !warning_messages_.empty(); }
// Handle errors detected during parsing.
- template <typename LocalIsolate>
+ template <typename IsolateT>
EXPORT_TEMPLATE_DECLARE(V8_EXPORT_PRIVATE)
- void PrepareErrors(LocalIsolate* isolate, AstValueFactory* ast_value_factory);
+ void PrepareErrors(IsolateT* isolate, AstValueFactory* ast_value_factory);
V8_EXPORT_PRIVATE void ReportErrors(Isolate* isolate,
Handle<Script> script) const;
// Handle warnings detected during compilation.
- template <typename LocalIsolate>
- void PrepareWarnings(LocalIsolate* isolate);
+ template <typename IsolateT>
+ void PrepareWarnings(IsolateT* isolate);
void ReportWarnings(Isolate* isolate, Handle<Script> script) const;
V8_EXPORT_PRIVATE Handle<String> FormatErrorMessageForTest(Isolate* isolate);
@@ -106,8 +106,8 @@ class PendingCompilationErrorHandler {
MessageLocation GetLocation(Handle<Script> script) const;
MessageTemplate message() const { return message_; }
- template <typename LocalIsolate>
- void Prepare(LocalIsolate* isolate);
+ template <typename IsolateT>
+ void Prepare(IsolateT* isolate);
private:
enum Type { kNone, kAstRawString, kConstCharString, kMainThreadHandle };