Home | History | Annotate | Download | only in front-end

Lines Matching refs:line

78     set line(line) {
80 var match = /<\/script/i.exec(line);
82 this._internalJavaScriptTokenizer.line = line.substring(0, match.index);
84 this._internalJavaScriptTokenizer.line = line;
86 var match = /<\/style/i.exec(line);
88 this._internalCSSTokenizer.line = line.substring(0, match.index);
90 this._internalCSSTokenizer.line = line;
92 this._line = line;
144 // Re-set line to force </script> detection first.
145 this.line = this._line;
156 // Re-set line to force </style> detection first.
157 this.line = this._line;