HomeSort by relevance Sort by last modified time
    Searched defs:FormatterWorker (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/script_formatter_worker/
JavaScriptFormatter.js 33 * @param {!FormatterWorker.JavaScriptTokenizer} tokenizer
34 * @param {!FormatterWorker.JavaScriptFormattedContentBuilder} builder
36 FormatterWorker.JavaScriptFormatter = function(tokenizer, builder)
44 FormatterWorker.JavaScriptFormatter.prototype = {
47 this._parseSourceElements(FormatterWorker.JavaScriptTokens.EOS);
48 this._consume(FormatterWorker.JavaScriptTokens.EOS);
64 if (this._token && this._token.token === FormatterWorker.JavaScriptTokens.EOS)
96 if (this._peek() === FormatterWorker.JavaScriptTokens.SEMICOLON)
97 this._consume(FormatterWorker.JavaScriptTokens.SEMICOLON);
121 if (this._peek() === FormatterWorker.JavaScriptTokens.LBRACE)
    [all...]
CSSFormatter.js 34 * @param {!FormatterWorker.CSSFormattedContentBuilder} builder
36 FormatterWorker.CSSFormatter = function(content, builder)
44 FormatterWorker.CSSFormatter.prototype = {
48 var tokenize = FormatterWorker.createTokenizer("text/css");
144 FormatterWorker.CSSFormattedContentBuilder = function(content, mapping, originalOffset, formattedOffset, indentString)
165 FormatterWorker.CSSFormattedContentBuilder.prototype = {
ScriptFormatterWorker.js 37 FormatterWorker = {
70 FormatterWorker[data.method](data.params);
76 FormatterWorker.format = function(params)
83 var formatter = new FormatterWorker.HTMLFormatter(indentString);
87 result.content = FormatterWorker._formatCSS(params.content, result.mapping, 0, 0, indentString);
90 result.content = FormatterWorker._formatScript(params.content, result.mapping, 0, 0, indentString);
99 FormatterWorker._chunkCount = function(totalLength, chunkSize)
112 FormatterWorker.javaScriptOutline = function(params)
117 var chunkCount = FormatterWorker._chunkCount(totalLength, chunkSize);
128 var tokenizer = FormatterWorker.createTokenizer("text/javascript")
    [all...]

Completed in 225 milliseconds