We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ddff86e commit 7db47a7Copy full SHA for 7db47a7
crates/codegen/src/get_node_properties.rs
@@ -535,9 +535,6 @@ fn custom_handlers(node: &Node) -> TokenStream {
535
if n.type_name.is_some() {
536
tokens.push(TokenProperty::from(Token::As));
537
}
538
- if n.constraints.len() > 0 {
539
- tokens.push(TokenProperty::from(Token::Check));
540
- }
541
},
542
_ => quote! {},
543
crates/parser/src/codegen.rs
@@ -101,7 +101,6 @@ mod tests {
101
TokenProperty::from(SyntaxKind::Create),
102
TokenProperty::from(SyntaxKind::DomainP),
103
TokenProperty::from(SyntaxKind::As),
104
- TokenProperty::from(SyntaxKind::Check),
105
TokenProperty::from("us_postal_code".to_string()),
106
],
107
)
0 commit comments