Lines Matching refs:new
23 set_error_handler(function($type, $msg) { throw new Exception($msg); });
35 $x = new stdClass;
41 try { $x += new stdClass; }
45 $x = new stdClass;
51 try { $x -= new stdClass; }
55 $x = new stdClass;
61 try { $x *= new stdClass; }
65 $x = new stdClass;
71 try { $x /= new stdClass; }
75 $x = new stdClass;
81 try { $x %= new stdClass; }
85 $x = new stdClass;
91 try { $x **= new stdClass; }
95 $x = new stdClass;
101 try { $x ^= new stdClass; }
105 $x = new stdClass;
111 try { $x &= new stdClass; }
115 $x = new stdClass;
121 try { $x |= new stdClass; }
125 $x = new stdClass;
131 try { $x <<= new stdClass; }
135 $x = new stdClass;
141 try { $x >>= new stdClass; }