feat(prettier) Print Super expression (#1264)

This commit is contained in:
Cameron 2023-11-13 13:02:36 +00:00 committed by GitHub
parent 728b7832dc
commit 74e5616acc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -728,7 +728,7 @@ impl<'a> Format<'a> for TaggedTemplateExpression<'a> {
impl<'a> Format<'a> for Super {
fn format(&self, p: &mut Prettier<'a>) -> Doc<'a> {
Doc::Line
Doc::Str("super")
}
}