We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db05ac5 commit 3d8da5eCopy full SHA for 3d8da5e
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
@@ -97,7 +97,6 @@ mod tests {
97
TokenProperty::from(SyntaxKind::Create),
98
TokenProperty::from(SyntaxKind::DomainP),
99
TokenProperty::from(SyntaxKind::As),
100
- TokenProperty::from(SyntaxKind::Check),
101
TokenProperty::from("us_postal_code".to_string()),
102
],
103
)
0 commit comments