0
我正在使用Esprima解析器,它輸出一個AST格式,它與Mozilla Spider Monkey Parser API兼容。「默認值」包含什麼?
在Mozilla Docs,它指定Function
節點:
interface Function <: Node {
id: Identifier | null;
params: [ Pattern ];
defaults: [ Expression ];
rest: Identifier | null;
body: BlockStatement | Expression;
generator: boolean;
expression: boolean;
}
會是什麼defaults
屬性包含哪些內容?它總是顯示爲一個空數組。