2011-09-07 08:35:18 +02:00
|
|
|
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
2014-07-22 01:09:02 +02:00
|
|
|
/*---
|
|
|
|
info: Primitive types are passed by value
|
2014-07-25 00:41:42 +02:00
|
|
|
es5id: 13.2.1_A6_T1
|
2014-07-22 01:09:02 +02:00
|
|
|
description: Declaring a function with "function __func(arg1, arg2)"
|
2015-03-23 17:34:52 +01:00
|
|
|
flags: [noStrict]
|
2014-07-22 01:09:02 +02:00
|
|
|
---*/
|
2011-09-07 08:35:18 +02:00
|
|
|
|
|
|
|
function __func(arg1, arg2){
|
|
|
|
arg1++;
|
|
|
|
arg2+="BA";
|
|
|
|
};
|
|
|
|
|
|
|
|
var x=1;
|
|
|
|
y=2;
|
|
|
|
var a="AB"
|
|
|
|
b="SAM";
|
|
|
|
|
|
|
|
__func(x,a);
|
|
|
|
__func(y,b);
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
//CHECK#1
|
|
|
|
if (x!==1 || y!==2 || a!=="AB" || b!=="SAM") {
|
2021-07-22 21:58:54 +02:00
|
|
|
throw new Test262Error('#1: x === 1 and y === 2 and a === "AB" and b === "SAM". Actual: x ==='+x+' and y ==='+y+' and a ==='+a+' and b ==='+b);
|
2011-09-07 08:35:18 +02:00
|
|
|
}
|
|
|
|
//
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|