Wed, 31 Dec 2014 07:53:36 +0100
Correct small whitespace inconsistency, lost while renaming variables.
1 // Copyright 2009 the Sputnik authors. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
4 /**
5 * The production FunctionDeclaration: "function Identifier ( FormalParameterList_opt ) { FunctionBody }" is processed by function declarations
6 *
7 * @path ch13/13.0/S13_A4_T4.js
8 * @description Declaring a function that uses strings concatenaion opeator within its "return" Expression
9 */
11 function __func(){return arguments[0].name + " " + arguments[0].surname;};
13 //////////////////////////////////////////////////////////////////////////////
14 //CHECK#1
15 if (typeof __func !== "function") {
16 $ERROR('#1: typeof __func === "function". Actual: typeof __func ==='+typeof __func);
17 }
18 //
19 //////////////////////////////////////////////////////////////////////////////
21 //////////////////////////////////////////////////////////////////////////////
22 //CHECK#2
23 if (__func({name:'fox', surname:'malder'}) !== "fox malder") {
24 $ERROR('#2: __func({name:\'fox\', surname:\'malder\'}) === "fox malder". Actual: __func({name:\'fox\', surname:\'malder\'}) ==='+__func({name:'fox', surname:'malder'}));
25 }
26 //
27 //////////////////////////////////////////////////////////////////////////////
29 function func__(arg){return arg.name + " " + arg.surname;};
31 //////////////////////////////////////////////////////////////////////////////
32 //CHECK#3
33 if (typeof func__ !== "function") {
34 $ERROR('#3: typeof func__ === "function". Actual: typeof __func ==='+typeof __func);
35 }
36 //
37 //////////////////////////////////////////////////////////////////////////////
39 //////////////////////////////////////////////////////////////////////////////
40 //CHECK#4
41 if (func__({name:'john', surname:'lennon'}) !== "john lennon") {
42 $ERROR('#4: func__({name:\'john\', surname:\'lennon\'}) === "john lennon". Actual: __func({name:\'john\', surname:\'lennon\'}) ==='+__func({name:'john', surname:'lennon'}));
43 }
44 //
45 //////////////////////////////////////////////////////////////////////////////