Skip to content

Commit d317500

Browse files
authored
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
1 parent 4ea6c61 commit d317500

15 files changed

Lines changed: 1099 additions & 565 deletions

server/jsx.d.ts

Lines changed: 0 additions & 13 deletions
This file was deleted.

server/src/constants.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// Options hooks
2+
export const DIFF = '__b';
3+
export const RENDER = '__r';
4+
export const DIFFED = 'diffed';
5+
export const COMMIT = '__c';
6+
export const SKIP_EFFECTS = '__s';
7+
8+
// VNode properties
9+
export const COMPONENT = '__c';
10+
11+
// Component properties
12+
export const NEXT_STATE = '__s';

0 commit comments

Comments
 (0)