console.log can't handle multiple SIMD objects
Reported by
acmesqua...@gmail.com,
Jul 28 2016
|
|||||||||
Issue descriptionUserAgent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:48.0) Gecko/20100101 Firefox/48.0 Steps to reproduce the problem: console.log( SIMD.Int32x4(1,1,1,1), SIMD.Int32x4(2,2,2,2), 'hello world' ); What is the expected behavior? Log all arguments What went wrong? If one or more SIMD objects are passed to console.log, only the first argument is logged. Did this work before? No Chrome version: 53.0.2785.30 Channel: dev OS Version: Flash Version:
,
Jul 30 2016
,
Aug 3 2016
,
Aug 10 2016
Better triage label...
,
Aug 10 2016
,
Aug 10 2016
,
Aug 10 2016
Bill, can you figure out why this, and how important?
,
Aug 10 2016
,
Feb 27 2017
This bug is probably obsoleted by SIMD.js being removed from v8
,
Feb 27 2017
This is now obsolete. |
|||||||||
►
Sign in to add a comment |
|||||||||
Comment 1 by acmesqua...@gmail.com
, Jul 29 2016Also, only the first value of an Array or Object is logged if it contains a SIMD. console.log([ 'hello', SIMD.Int32x4(1,1,1,1) ]); console.log([ SIMD.Int32x4(1,1,1,1), 'hello' ]); console.log({ a:'hello', b: SIMD.Int32x4(1,1,1,1) });