Commit b4e17a23 authored by feng@chromium.org's avatar feng@chromium.org

fix lint issue (from ager's commit)

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@775 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 736c7a9d
......@@ -5238,7 +5238,8 @@ static String::ExternalStringResource* SymbolCallback(const char* chars,
static v8::Handle<Value> ExternalSymbolGetter(Local<String> name,
const AccessorInfo& info) {
ApiTestFuzzer::Fuzz();
CHECK(!name->Equals(v8_str("externalSymbol722")) || name->IsExternal()); CHECK(name->IsExternal());
CHECK(!name->Equals(v8_str("externalSymbol722")) || name->IsExternal());
CHECK(name->IsExternal());
return v8::True();
}
......
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