(&mut self)
| 303 | "line {}: object block `{}` missing closing `}}`", |
| 304 | start_line, object |
| 305 | )) |
| 306 | } |
| 307 | |
| 308 | fn parse_inline_object_block( |
| 309 | &mut self, |
| 310 | line_no: usize, |
| 311 | frame: u32, |
| 312 | key_mode: AnimationKeyMode, |
| 313 | line: &str, |
| 314 | object_types: &HashMap<String, NodeType>, |
| 315 | ) -> Result<Vec<FrameAction>, String> { |
| 316 | let open = line |
no test coverage detected