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

Side by Side Diff: src/api.cc

Issue 1801203002: Parser: Make skipping HTML comments optional. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase. Created 4 years, 9 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 unified diff | Download patch
« no previous file with comments | « include/v8.h ('k') | src/objects.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 #include "src/api.h" 5 #include "src/api.h"
6 6
7 #include <string.h> // For memcpy, strlen. 7 #include <string.h> // For memcpy, strlen.
8 #ifdef V8_USE_ADDRESS_SANITIZER 8 #ifdef V8_USE_ADDRESS_SANITIZER
9 #include <sanitizer/asan_interface.h> 9 #include <sanitizer/asan_interface.h>
10 #endif // V8_USE_ADDRESS_SANITIZER 10 #endif // V8_USE_ADDRESS_SANITIZER
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 reinterpret_cast<v8::Isolate*>(script->GetIsolate()); 219 reinterpret_cast<v8::Isolate*>(script->GetIsolate());
220 ScriptOriginOptions options(script->origin_options()); 220 ScriptOriginOptions options(script->origin_options());
221 v8::ScriptOrigin origin( 221 v8::ScriptOrigin origin(
222 Utils::ToLocal(scriptName), 222 Utils::ToLocal(scriptName),
223 v8::Integer::New(v8_isolate, script->line_offset()), 223 v8::Integer::New(v8_isolate, script->line_offset()),
224 v8::Integer::New(v8_isolate, script->column_offset()), 224 v8::Integer::New(v8_isolate, script->column_offset()),
225 v8::Boolean::New(v8_isolate, options.IsSharedCrossOrigin()), 225 v8::Boolean::New(v8_isolate, options.IsSharedCrossOrigin()),
226 v8::Integer::New(v8_isolate, script->id()), 226 v8::Integer::New(v8_isolate, script->id()),
227 v8::Boolean::New(v8_isolate, options.IsEmbedderDebugScript()), 227 v8::Boolean::New(v8_isolate, options.IsEmbedderDebugScript()),
228 Utils::ToLocal(source_map_url), 228 Utils::ToLocal(source_map_url),
229 v8::Boolean::New(v8_isolate, options.IsOpaque())); 229 v8::Boolean::New(v8_isolate, options.IsOpaque()),
230 v8::Boolean::New(v8_isolate, options.AllowHtmlComments()));
230 return origin; 231 return origin;
231 } 232 }
232 233
233 234
234 // --- E x c e p t i o n B e h a v i o r --- 235 // --- E x c e p t i o n B e h a v i o r ---
235 236
236 237
237 void i::FatalProcessOutOfMemory(const char* location) { 238 void i::FatalProcessOutOfMemory(const char* location) {
238 i::V8::FatalProcessOutOfMemory(location, false); 239 i::V8::FatalProcessOutOfMemory(location, false);
239 } 240 }
(...skipping 8512 matching lines...) Expand 10 before | Expand all | Expand 10 after
8752 Address callback_address = 8753 Address callback_address =
8753 reinterpret_cast<Address>(reinterpret_cast<intptr_t>(callback)); 8754 reinterpret_cast<Address>(reinterpret_cast<intptr_t>(callback));
8754 VMState<EXTERNAL> state(isolate); 8755 VMState<EXTERNAL> state(isolate);
8755 ExternalCallbackScope call_scope(isolate, callback_address); 8756 ExternalCallbackScope call_scope(isolate, callback_address);
8756 callback(info); 8757 callback(info);
8757 } 8758 }
8758 8759
8759 8760
8760 } // namespace internal 8761 } // namespace internal
8761 } // namespace v8 8762 } // namespace v8
OLDNEW
« no previous file with comments | « include/v8.h ('k') | src/objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698