This repository has been archived by the owner on Aug 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 659
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(rome_js_parser): EcmaScript @decorators #4252
- Loading branch information
1 parent
af2cfbe
commit f446f1a
Showing
214 changed files
with
8,849 additions
and
2,774 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
//! This is a generated file. Don't modify it by hand! Run 'cargo codegen formatter' to re-generate the file. | ||
|
||
use crate::prelude::*; | ||
use rome_js_syntax::AnyJsDecorator; | ||
#[derive(Debug, Clone, Default)] | ||
pub(crate) struct FormatAnyJsDecorator; | ||
impl FormatRule<AnyJsDecorator> for FormatAnyJsDecorator { | ||
type Context = JsFormatContext; | ||
fn fmt(&self, node: &AnyJsDecorator, f: &mut JsFormatter) -> FormatResult<()> { | ||
match node { | ||
AnyJsDecorator::JsParenthesizedExpression(node) => node.format().fmt(f), | ||
AnyJsDecorator::JsCallExpression(node) => node.format().fmt(f), | ||
AnyJsDecorator::JsStaticMemberExpression(node) => node.format().fmt(f), | ||
AnyJsDecorator::JsIdentifierExpression(node) => node.format().fmt(f), | ||
AnyJsDecorator::JsBogusExpression(node) => node.format().fmt(f), | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
use crate::prelude::*; | ||
use rome_js_syntax::JsDecorator; | ||
use rome_rowan::AstNode; | ||
#[derive(Debug, Clone, Default)] | ||
pub(crate) struct FormatJsDecorator; | ||
impl FormatNodeRule<JsDecorator> for FormatJsDecorator { | ||
fn fmt_fields(&self, node: &JsDecorator, f: &mut JsFormatter) -> FormatResult<()> { | ||
format_verbatim_node(node.syntax()).fmt(f) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
use crate::prelude::*; | ||
use rome_formatter::write; | ||
use rome_js_syntax::JsDecoratorList; | ||
|
||
#[derive(Debug, Clone, Default)] | ||
pub(crate) struct FormatJsDecoratorList; | ||
impl FormatRule<JsDecoratorList> for FormatJsDecoratorList { | ||
type Context = JsFormatContext; | ||
fn fmt(&self, node: &JsDecoratorList, f: &mut JsFormatter) -> FormatResult<()> { | ||
if node.is_empty() { | ||
return Ok(()); | ||
} | ||
|
||
f.join_with(&soft_line_break_or_space()) | ||
.entries(node.iter().formatted()) | ||
.finish()?; | ||
|
||
write!(f, [soft_line_break_or_space()]) | ||
} | ||
} |
Oops, something went wrong.