{
  (function () {
     alert('hello world');
   })();
  (function a() {
     alert('hello world');
   })();
  (function () {
     alert('hello world');
   });
  (function b() {
     alert('hello world');
   });
  function c() {
    alert('hello world');
  };
  (function () {
     alert('hello world');
   });
  var d = function () {
    alert('hello world');
  };
  var e = function f() {
    alert('hello world');
  };
  ({
     'x': 4,
     'y': 5,
     'invoke': function () {
       doSomething(this, this.x + this.y);
     }
   }).invoke();
  { block: 4; }
  ({ 'objet': 4 });
  eval('foo');
  \u00e9v\uff41l('foo');
}
