-
Notifications
You must be signed in to change notification settings - Fork 46.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[compiler][ez] Add types for Math.min, recursive global #30641
Conversation
[ghstack-poisoned]
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
DEFAULT_GLOBALS.set( | ||
'globalThis', | ||
addObject(DEFAULT_SHAPES, 'globalThis', TYPED_GLOBALS), | ||
); | ||
DEFAULT_GLOBALS.set( | ||
'global', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
window
too.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I debated on adding window but figured we should leave it out for now. I wonder if we want to handle window
and document
separately as people often use these for DOM-manipulation (global mutable state)
@@ -136,6 +136,17 @@ const TYPED_GLOBALS: Array<[string, BuiltInType]> = [ | |||
returnValueKind: ValueKind.Primitive, | |||
}), | |||
], | |||
[ | |||
'min', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
whole bunch more Math.*
stuff missing.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Makes sense, added min as Math.min
and Math.max
differences surprised me a few times. Will go ahead and add a few others
[ghstack-poisoned]
ghstack-source-id: 9940b8f96eec3fb2b411af8a7c92d93aae6da85e Pull Request resolved: #30641
Stack from ghstack (oldest at bottom):