mirror of
				https://github.com/tc39/test262.git
				synced 2025-10-30 03:03:51 +01:00 
			
		
		
		
	* [javascriptcore-test262-automation] changes from git@github.com:WebKit/webkit.git at sha 949e26452cfa153a7f4afe593da97e2fe9e1b706 on Tue Jul 03 2018 14:35:15 GMT-0400 (Eastern Daylight Time)
		
			
				
	
	
		
			25 lines
		
	
	
		
			516 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			516 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| function Foo(a, b) {
 | |
|     this.f = a.f;
 | |
|     this.g = b.f + 1;
 | |
| }
 | |
| 
 | |
| function foo(a, b) {
 | |
|     return new Foo(a, b);
 | |
| }
 | |
| 
 | |
| noInline(foo);
 | |
| 
 | |
| for (var i = 0; i < 100000; ++i) {
 | |
|     var result = foo({f:1}, {f:2});
 | |
|     if (result.f != 1)
 | |
|         throw "Error: bad result.f: " + result.f;
 | |
|     if (result.g != 3)
 | |
|         throw "Error: bad result.g: " + result.g;
 | |
| }
 | |
| 
 | |
| var result = foo({f:1}, {f:2.5});
 | |
| if (result.f != 1)
 | |
|     throw "Error: bad result.f: " + result.f;
 | |
| if (result.g != 3.5)
 | |
|     throw "Error: bad result.f: " + result.g;
 |