(src: &'a str)
| 78 | |
| 79 | impl<'a> AnimationTreeParser<'a> { |
| 80 | fn new(src: &'a str) -> Self { |
| 81 | let mut lexer = Lexer::new(src); |
| 82 | let current = lexer.next_token(); |
| 83 | Self { lexer, current } |
| 84 | } |
| 85 | |
| 86 | fn parse(mut self) -> Result<AnimationTreeAsset, String> { |
| 87 | let mut name = Cow::Borrowed("AnimationTree"); |
nothing calls this directly
no test coverage detected