[Webkit-unassigned] [Bug 186769] New: [WSL] An array reference of an array cell should return a reference of length 1, not a slice to the end of the original array

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Jun 18 09:04:01 PDT 2018


https://bugs.webkit.org/show_bug.cgi?id=186769

            Bug ID: 186769
           Summary: [WSL] An array reference of an array cell should
                    return a reference of length 1, not a slice to the end
                    of the original array
           Product: WebKit
           Version: WebKit Nightly Build
          Hardware: Unspecified
                OS: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: WebGPU
          Assignee: webkit-unassigned at lists.webkit.org
          Reporter: rmorisset at apple.com
            Blocks: 176199

```
int[3] x;
x[0] = 1;
x[1] = 3;
x[2] = 6;
thread int[] r = @x[1]; // or @(x[1])
r[1] = 5;
```
should fail, instead of resulting in x being [1;3;5].


Referenced Bugs:

https://bugs.webkit.org/show_bug.cgi?id=176199
[Bug 176199] ☂️ Implement Reference Implementation of WebGPU Shading Language
-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20180618/cc47276f/attachment.html>


More information about the webkit-unassigned mailing list