* 根据 fileName 获取 document * @param fileName * @returns
(fileName: string)
| 121 | * @returns |
| 122 | */ |
| 123 | getDocumentByFileName(fileName: string): IPublicModelDocumentModel | null { |
| 124 | const innerDocumentModel = this[projectSymbol].getDocumentByFileName(fileName); |
| 125 | return ShellDocumentModel.create(innerDocumentModel); |
| 126 | } |
| 127 | |
| 128 | /** |
| 129 | * 根据 id 获取 document |
nothing calls this directly
no test coverage detected