Skip to content

DdToken

Bhsd edited this page Apr 18, 2026 · 10 revisions

Other Languages

简介

;位于同一行的:。这个类继承了 Token 类的全部属性和方法,这里不再列出。

🌐 在 Browser 版本中可用。

Properties

indent

🌐 展开

type: number
缩进数。在 Browser 版本中为只读属性。

// 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, ":");

Clone this wiki locally