Commit 7fa09c0a authored by erik.corry@gmail.com's avatar erik.corry@gmail.com

Add change accidentally omitted from last changelist.

Review URL: http://codereview.chromium.org/100252

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@1832 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent ad230174
...@@ -870,9 +870,7 @@ bool Genesis::CompileScriptCached(Vector<const char> name, ...@@ -870,9 +870,7 @@ bool Genesis::CompileScriptCached(Vector<const char> name,
// If we can't find the function in the cache, we compile a new // If we can't find the function in the cache, we compile a new
// function and insert it into the cache. // function and insert it into the cache.
if (!cache->Lookup(name, &boilerplate)) { if (!cache->Lookup(name, &boilerplate)) {
#ifdef DEBUG ASSERT(source->IsAsciiRepresentation());
ASSERT(StringShape(*source).IsAsciiRepresentation());
#endif
Handle<String> script_name = Factory::NewStringFromUtf8(name); Handle<String> script_name = Factory::NewStringFromUtf8(name);
boilerplate = boilerplate =
Compiler::Compile(source, script_name, 0, 0, extension, NULL); Compiler::Compile(source, script_name, 0, 0, extension, NULL);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment