Projekt

Obecné

Profil

Stáhnout (294 Bajtů) Statistiky
| Větev: | Revize:
1
'use strict';
2
module.exports = function toFastproperties(o) {
3
	function Sub() {}
4
	Sub.prototype = o;
5
	var receiver = new Sub(); // create an instance
6
	function ic() { return typeof receiver.foo; } // perform access
7
	ic(); 
8
	ic();
9
	return o;
10
	eval("o" + o); // ensure no dead code elimination
11
}
(1-1/4)