RESOLVED FIXED 176675
IntLiteral should prefer int32 during overload resolution
https://bugs.webkit.org/show_bug.cgi?id=176675
Summary IntLiteral should prefer int32 during overload resolution
Filip Pizlo
Reported 2017-09-10 14:56:13 PDT
This should resolve unambiguously: int foo(int) uint foo(uint) foo(42) This should be an error: uint foo(uint) double foo(double) foo(42)
Attachments
the patch (7.64 KB, patch)
2017-09-10 16:56 PDT, Filip Pizlo
mmaxfield: review+
Filip Pizlo
Comment 1 2017-09-10 16:56:35 PDT
Created attachment 320407 [details] the patch
Myles C. Maxfield
Comment 2 2017-09-11 08:39:08 PDT
Comment on attachment 320407 [details] the patch View in context: https://bugs.webkit.org/attachment.cgi?id=320407&action=review > Tools/WebGPUShadingLanguageRI/Test.js:1439 > + int foo<T>(T) { return 1; } Why should this fail? I would expect T to become an int.
Filip Pizlo
Comment 3 2017-09-11 10:09:21 PDT
(In reply to Myles C. Maxfield from comment #2) > Comment on attachment 320407 [details] > the patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=320407&action=review > > > Tools/WebGPUShadingLanguageRI/Test.js:1439 > > + int foo<T>(T) { return 1; } > > Why should this fail? I would expect T to become an int. I think that's what we should eventually do. It would take some extra effort to implement this. Filed: https://bugs.webkit.org/show_bug.cgi?id=176707
Filip Pizlo
Comment 4 2017-09-11 10:21:04 PDT
Myles C. Maxfield
Comment 5 2017-09-11 11:25:46 PDT
(In reply to Filip Pizlo from comment #3) > (In reply to Myles C. Maxfield from comment #2) > > Comment on attachment 320407 [details] > > the patch > > > > View in context: > > https://bugs.webkit.org/attachment.cgi?id=320407&action=review > > > > > Tools/WebGPUShadingLanguageRI/Test.js:1439 > > > + int foo<T>(T) { return 1; } > > > > Why should this fail? I would expect T to become an int. > > I think that's what we should eventually do. It would take some extra > effort to implement this. > > Filed: https://bugs.webkit.org/show_bug.cgi?id=176707 If we expect that an idea language wouldn't work this way, we probably shouldn't have this as a test.
Myles C. Maxfield
Comment 6 2017-09-11 11:25:58 PDT
(In reply to Myles C. Maxfield from comment #5) > (In reply to Filip Pizlo from comment #3) > > (In reply to Myles C. Maxfield from comment #2) > > > Comment on attachment 320407 [details] > > > the patch > > > > > > View in context: > > > https://bugs.webkit.org/attachment.cgi?id=320407&action=review > > > > > > > Tools/WebGPUShadingLanguageRI/Test.js:1439 > > > > + int foo<T>(T) { return 1; } > > > > > > Why should this fail? I would expect T to become an int. > > > > I think that's what we should eventually do. It would take some extra > > effort to implement this. > > > > Filed: https://bugs.webkit.org/show_bug.cgi?id=176707 > > If we expect that an idea language wouldn't work this way, we probably > shouldn't have this as a test. **ideal language
Filip Pizlo
Comment 7 2017-09-11 11:33:45 PDT
(In reply to Myles C. Maxfield from comment #6) > (In reply to Myles C. Maxfield from comment #5) > > (In reply to Filip Pizlo from comment #3) > > > (In reply to Myles C. Maxfield from comment #2) > > > > Comment on attachment 320407 [details] > > > > the patch > > > > > > > > View in context: > > > > https://bugs.webkit.org/attachment.cgi?id=320407&action=review > > > > > > > > > Tools/WebGPUShadingLanguageRI/Test.js:1439 > > > > > + int foo<T>(T) { return 1; } > > > > > > > > Why should this fail? I would expect T to become an int. > > > > > > I think that's what we should eventually do. It would take some extra > > > effort to implement this. > > > > > > Filed: https://bugs.webkit.org/show_bug.cgi?id=176707 > > > > If we expect that an idea language wouldn't work this way, we probably > > shouldn't have this as a test. > > **ideal language More tests are better. I think it's good practice to add tests for how you expect your code to behave right now, even if that means having to change the test later. That makes sense here, since the current behavior isn't really "wrong" (it doesn't render the type system unsound or anything like that) - it's just subject to change.
Radar WebKit Bug Importer
Comment 8 2017-09-27 12:33:01 PDT
Myles C. Maxfield
Comment 9 2018-10-13 16:52:49 PDT
Note You need to log in before you can comment on or make changes to this bug.