07.arguments_sm.baseline 423 B

123456
  1. Changing Arguments...
  2. Exception: function f0() { 'use strict'; arguments=1; } :: Assign to Arguments
  3. Exception: function f1() { 'use strict'; arguments++; } :: Post ++ Arguments
  4. Exception: function f2() { 'use strict'; arguments--; } :: Post -- Arguments
  5. Exception: function f3() { 'use strict'; ++arguments; } :: Pre ++ Arguments
  6. Exception: function f4() { 'use strict'; --arguments; } :: Pre -- Arguments