对应 document 的 path
()
| 67 | |
| 68 | /** 对应 document 的 path */ |
| 69 | get fileName(): string { |
| 70 | return this.rootNode?.getExtraProp('fileName', false)?.getAsString() || this.id |
| 71 | } |
| 72 | |
| 73 | set fileName(fileName: string) { |
| 74 | this.rootNode?.getExtraProp('fileName', true)?.setValue(fileName) |
nothing calls this directly
no test coverage detected