mirror of
https://github.com/slint-ui/slint.git
synced 2025-10-02 22:54:36 +00:00
Parse property declarations
For now this uses the syntax property<qualified type name> name;
This commit is contained in:
parent
5accea4cdd
commit
32b99547f1
5 changed files with 54 additions and 0 deletions
|
@ -34,6 +34,8 @@ fn fill_token_vec(stream: TokenStream, vec: &mut Vec<parser::Token>) {
|
|||
';' => SyntaxKind::Semicolon,
|
||||
'!' => SyntaxKind::Bang,
|
||||
'.' => SyntaxKind::Dot,
|
||||
'<' => SyntaxKind::LAngle,
|
||||
'>' => SyntaxKind::RAngle,
|
||||
_ => SyntaxKind::Error,
|
||||
};
|
||||
vec.push(parser::Token {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue