Home | History | Annotate | Download | only in inspector

Lines Matching defs:source

2 // Use of this source code is governed by a BSD-style license that can be
118 if (script->Source().ToLocal(&tmp)) {
120 String16 source = toProtocolString(tmp);
121 m_hash = calculateHash(source);
122 // V8 will not count last line if script source ends with \n.
123 if (source.length() > 1 && source[source.length() - 1] == '\n') {
138 v8::Local<v8::String> V8DebuggerScript::source(v8::Isolate* isolate) const {
150 void V8DebuggerScript::setSource(v8::Local<v8::String> source) {
151 m_source.Reset(m_isolate, source);
152 m_hash = calculateHash(toProtocolString(source));