Home
last modified time | relevance | path

Searched refs:colno (Results 1 – 25 of 25) sorted by relevance

/plugin/asciidocjs/node_modules/nunjucks/src/
Dparser.js51 _proto.error = function error(msg, lineno, colno) { argument
52 if (lineno === undefined || colno === undefined) {
55 colno = tok.colno;
60 if (colno !== undefined) {
61 colno += 1;
63 return new lib.TemplateError(msg, lineno, colno);
65 _proto.fail = function fail(msg, lineno, colno) { argument
66 throw this.error(msg, lineno, colno);
79 this.fail('expected ' + type + ', got ' + tok.type, tok.lineno, tok.colno);
130 node = new nodes.For(forTok.lineno, forTok.colno);
[all …]
Dlexer.js39 function token(type, value, lineno, colno) { argument
44 colno: colno
53 this.colno = 0;
71 var colno = this.colno;
81 return token(TOKEN_STRING, this._parseString(cur), lineno, colno);
84 return token(TOKEN_WHITESPACE, tok, lineno, colno);
110 return token(TOKEN_BLOCK_END, tok, lineno, colno);
114 return token(TOKEN_VARIABLE_END, tok, lineno, colno);
147 }, lineno, colno);
198 return token(type, cur, lineno, colno);
[all …]
Djinja-compat.js57 colno: tokens.colno
64 init: function init(lineno, colno, start, stop, step) {
65 start = start || new nodes.Literal(lineno, colno, null);
66 stop = stop || new nodes.Literal(lineno, colno, null);
67 step = step || new nodes.Literal(lineno, colno, 1);
68 this.parent(lineno, colno, start, stop, step);
90 origState.colno--;
110 var node = new Slice(tok.lineno, tok.colno);
121 this.fail('parseSlice: too many slice components', tok.lineno, tok.colno);
137 return new nodes.Array(tok.lineno, tok.colno, [node]);
Dtransformer.js39 ast = new nodes[ast.typename](ast.lineno, ast.colno, children);
57 ast = new nodes[ast.typename](ast.lineno, ast.colno);
75 symbol = new nodes.Symbol(descNode.lineno, descNode.colno, gensym());
76 …children.push(new nodes.FilterAsync(descNode.lineno, descNode.colno, descNode.name, descNode.args,…
87 return new nodes.NodeList(node.lineno, node.colno, children);
120 return new nodes.Symbol(node.lineno, node.colno, symbol);
144 return new nodes.IfAsync(node.lineno, node.colno, node.cond, node.body, node.else_);
146 … return new nodes.AsyncEach(node.lineno, node.colno, node.arr, node.name, node.body, node.else_);
Dnodes.js25 _proto.init = function init(lineno, colno) { argument
32 this.colno = colno;
91 _proto2.init = function init(lineno, colno, nodes) { argument
92 _Node2.prototype.init.call(this, lineno, colno, nodes || []); argument
147 _proto3.init = function init(lineno, colno, template, names, withContext) { argument
148 _Node3.prototype.init.call(this, lineno, colno, template, names || new NodeList(), withContext); argument
Dlib.js38 function TemplateError(message, lineno, colno) { argument
88 err.colno = colno;
96 if (this.lineno && this.colno) {
97 msg += " [Line " + this.lineno + ", Column " + this.colno + "]";
Druntime.js191 function ensureDefined(val, lineno, colno) { argument
193 … throw new lib.TemplateError('attempted to output null or undefined value', lineno + 1, colno + 1);
223 function handleError(error, lineno, colno) { argument
227 return new lib.TemplateError(error, lineno, colno);
Dcompiler.js43 _proto.fail = function fail(msg, lineno, colno) { argument
47 if (colno !== undefined) {
48 colno += 1;
50 throw new TemplateError(msg, lineno, colno);
82 this._emitLine("var colno = " + node.colno + ";");
156 this.fail("assertType: invalid type: " + node.typename, node.lineno, node.colno);
396 this._emit('(lineno = ' + node.lineno + ', colno = ' + node.colno + ', ');
951 _this15._emit("," + node.lineno + "," + node.colno + ")");
999 this.fail("compile: Cannot compile node: " + node.typename, node.lineno, node.colno);
/plugin/data-au/syntax/
Dlist.php32 * @param int $colno column number
35 protected function beforeVal(&$dataau, $colno) { argument
36 if($dataau['sepbyheaders'] AND $colno === 0) {
37 return $dataau['headers'][$colno];
47 * @param int $colno
50 protected function afterVal(&$dataau, $colno) { argument
52 return $dataau['headers'][$colno + 1];
Dtable.php337 * @param int $colno column number
340 protected function beforeVal(&$dataau, $colno) { argument
348 * @param int $colno
351 protected function afterVal(&$dataau, $colno) { argument
/plugin/data/syntax/
Dlist.php32 * @param int $colno column number
35 protected function beforeVal(&$data, $colno) argument
37 if ($data['sepbyheaders'] && $colno === 0) {
38 return $data['headers'][$colno];
48 * @param int $colno
51 protected function afterVal(&$data, $colno) argument
54 return $data['headers'][$colno + 1];
Dtable.php346 * @param int $colno column number
349 protected function beforeVal(&$data, $colno) argument
358 * @param int $colno
361 protected function afterVal(&$data, $colno) argument
/plugin/structstatus/
Daction.php120 $colno = $col['COL'];
121 …DATE data_$name SET col$colno = '[" . '""' . ",'||col$colno||']' WHERE col$colno != '' AND CAST(co…
125 …UPDATE multi_$name SET value = '[" . '""' . ",'||value||']' WHERE colref=$colno AND CAST(value AS …
/plugin/asciidocjs/node_modules/nunjucks/browser/
Dnunjucks.js119 function TemplateError(message, lineno, colno) {
169 err.colno = colno;
177 if (this.lineno && this.colno) {
178 msg += " [Line " + this.lineno + ", Column " + this.colno + "]";
709 function ensureDefined(val, lineno, colno) {
711 … throw new lib.TemplateError('attempted to output null or undefined value', lineno + 1, colno + 1);
741 function handleError(error, lineno, colno) {
745 return new lib.TemplateError(error, lineno, colno);
882 _proto.init = function init(lineno, colno) {
889 this.colno = colno;
[all …]
Dnunjucks.min.js2colno=i,r.firstUpdate=!0,r.Update=function(t){var n="("+(t||"unknown path")+")";return this.firstU…
Dnunjucks.min.js.map1colno","err","cause","getStack","Error","setPrototypeOf","writable","value","captureStackTrace","c…
Dnunjucks-slim.js125 function TemplateError(message, lineno, colno) {
175 err.colno = colno;
183 if (this.lineno && this.colno) {
184 msg += " [Line " + this.lineno + ", Column " + this.colno + "]";
609 function ensureDefined(val, lineno, colno) {
611 … throw new lib.TemplateError('attempted to output null or undefined value', lineno + 1, colno + 1);
641 function handleError(error, lineno, colno) {
645 return new lib.TemplateError(error, lineno, colno);
3468 colno: tokens.colno
3475 init: function init(lineno, colno, start, stop, step) {
[all …]
Dnunjucks.js.map1colno","cause","setPrototypeOf","defineProperty","enumerable","writable","value","captureStackTrac…
Dnunjucks-slim.min.js.map1colno","err","cause","getStack","Error","setPrototypeOf","writable","value","captureStackTrace","c…
Dnunjucks-slim.js.map1colno","cause","setPrototypeOf","defineProperty","enumerable","writable","value","captureStackTrac…
Dnunjucks-slim.min.js2colno=r,i.firstUpdate=!0,i.Update=function(t){var n="("+(t||"unknown path")+")";return this.firstU…
/plugin/struct/action/
Dmigration.php159 $colno = $col['COL'];
160 $colname = "col$colno";
175 $s = sprintf($f, $name, $colno);
181 SET col$colno = '[" . '""' . ",'||col$colno||']'
182 WHERE col$colno != ''
183 AND CAST(col$colno AS DECIMAL) = col$colno";
189 WHERE colref=$colno
/plugin/asciidocjs/node_modules/pug-lexer/
Dindex.js38 this.colno = options.startingColumn || 1;
59 …var err = error(code, message, {line: this.lineno, column: this.colno, filename: this.filename, sr…
115 column: this.colno
137 column: this.colno
151 if (increment) this.colno = 1;
162 this.colno += increment
492 startingColumn: this.colno
1157 var col = this.colno;
1192 this.colno = col + 1;
1206 col = this.colno;
[all …]
/plugin/diagramsnet/lib/js/diagramly/
DApp.js600 window.onerror = function(message, url, linenumber, colno, err) argument
603 url, linenumber, colno, err, null, true);
3073 window.onerror = function(message, url, linenumber, colno, err)
3079 url, linenumber, colno, err, null, true);
DEditorUi.js147 EditorUi.logError = function(message, url, linenumber, colno, err, severity, quiet) argument
174 …':lnum:' + encodeURIComponent(linenumber) + ((colno != null) ? ':colno:' + encodeURIComponent(coln…
188 console.error(severity, message, url, linenumber, colno, err);