-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
apply perf improvements from RTS (#3838)
* apply perf improvements * pretty printer * stub shallow * first fixes * fix tests * fix FC * circular import fix * Update package.json
- Loading branch information
1 parent
4ea6c61
commit d317500
Showing
15 changed files
with
1,099 additions
and
565 deletions.
There are no files selected for viewing
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
// Options hooks | ||
export const DIFF = '__b'; | ||
export const RENDER = '__r'; | ||
export const DIFFED = 'diffed'; | ||
export const COMMIT = '__c'; | ||
export const SKIP_EFFECTS = '__s'; | ||
|
||
// VNode properties | ||
export const COMPONENT = '__c'; | ||
|
||
// Component properties | ||
export const NEXT_STATE = '__s'; |
Oops, something went wrong.