-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[refactor] Add ASTSerializer and use it to generate offline-cache-key (…
…#4863) * Add ASTSerializer, using it to generate offline-cache-key * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
a9bd5c9
commit 3291be6
Showing
8 changed files
with
468 additions
and
29 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
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,15 @@ | ||
PER_STATEMENT(FrontendExternalFuncStmt) | ||
PER_STATEMENT(FrontendExprStmt) | ||
PER_STATEMENT(FrontendIfStmt) | ||
PER_STATEMENT(FrontendForStmt) | ||
PER_STATEMENT(FrontendPrintStmt) | ||
PER_STATEMENT(FrontendWhileStmt) | ||
PER_STATEMENT(FrontendBreakStmt) | ||
PER_STATEMENT(FrontendContinueStmt) | ||
PER_STATEMENT(FrontendAllocaStmt) | ||
PER_STATEMENT(FrontendAssignStmt) | ||
PER_STATEMENT(FrontendEvalStmt) | ||
PER_STATEMENT(FrontendSNodeOpStmt) // activate, deactivate, append, clear | ||
PER_STATEMENT(FrontendAssertStmt) | ||
PER_STATEMENT(FrontendFuncDefStmt) | ||
PER_STATEMENT(FrontendReturnStmt) |
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
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