DdToken (EN) - bhsd-harry/wikiparser-node GitHub Wiki
: which is at the same line with ;. This class inherits all the properties and methods of the Token class which are not repeated here.
🌐 Available in the Browser version.
🌐 Expand
type: number
Indentation. Read-only in the Browser version.
// indent (print)
var {lastChild} = Parser.parse(";;a::");
assert.equal(lastChild, "::");
assert.strictEqual(lastChild.indent, 2);// indent (main)
var {lastChild} = Parser.parse(";;a::");
lastChild.indent = 1;
assert.equal(lastChild, ":");