fieldhoist_nullfieldhoist.js 571 B

1234567891011121314151617
  1. //-------------------------------------------------------------------------------------------------------
  2. // Copyright (C) Microsoft. All rights reserved.
  3. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
  4. //-------------------------------------------------------------------------------------------------------
  5. var test_Neg_A = function(o, c)
  6. {
  7. var y = 10;
  8. for (var i = 0; i < 2; i++)
  9. {
  10. y = o.x + (-c.prop);
  11. }
  12. return y;
  13. }
  14. test_Neg_A.test_result1 = true;
  15. test_Neg_A();