--- source: crates/tele_parser/tests/parse.rs assertion_line: 59 expression: parser.parse() --- Ok( RefCell { value: StyleSheetNode { loc: Loc { start: Pos { offset: 0, line: 1, column: 1, }, end: Pos { offset: 40, line: 5, column: 4, }, }, statements: [ RuleSet( RefCell { value: RuleSetNode { loc: Loc { start: Pos { offset: 5, line: 2, column: 6, }, end: Pos { offset: 37, line: 4, column: 7, }, }, prelude: ".foo", prelude_tokens: [ Token { token_type: Delim, start_pos: Pos { offset: 5, line: 2, column: 6, }, end_pos: Pos { offset: 6, line: 2, column: 7, }, content: ".", }, Token { token_type: Ident, start_pos: Pos { offset: 6, line: 2, column: 7, }, end_pos: Pos { offset: 9, line: 2, column: 10, }, content: "foo", }, Token { token_type: WhiteSpace, start_pos: Pos { offset: 9, line: 2, column: 10, }, end_pos: Pos { offset: 10, line: 2, column: 11, }, content: " ", }, ], declarations: [ RefCell { value: DeclarationNode { loc: Loc { start: Pos { offset: 18, line: 3, column: 8, }, end: Pos { offset: 0, line: 1, column: 1, }, }, name: "height", name_tokens: [ Token { token_type: Ident, start_pos: Pos { offset: 18, line: 3, column: 8, }, end_pos: Pos { offset: 24, line: 3, column: 14, }, content: "height", }, ], value: [ Percentage( RefCell { value: PercentageNode { loc: Loc { start: Pos { offset: 26, line: 3, column: 16, }, end: Pos { offset: 29, line: 3, column: 19, }, }, value: "100%", }, }, ), ], value_tokens: [], important: false, }, }, ], }, }, ), ], }, }, )