fix double space after notice and warnings

We are inconsistent with how many spaces happen after ##:## Errors have one, but warnings and notices have 2. I went with 1 because that is what Zend does.
Esse commit está contido em:
ptarjan
2013-03-29 15:03:31 -07:00
commit de Sara Golemon
commit a2c5921413
50 arquivos alterados com 491 adições e 491 exclusões
+7 -7
Ver Arquivo
@@ -86,7 +86,7 @@ void raise_strict_warning(const std::string &msg) {
}
g_context->handleError(msg, errnum, true,
ExecutionContext::NeverThrow,
"HipHop Strict Warning: ");
"HipHop Strict Warning: ");
}
void raise_strict_warning(const char *fmt, ...) {
@@ -106,7 +106,7 @@ void raise_strict_warning(const char *fmt, ...) {
va_end(ap);
g_context->handleError(msg, errnum, true,
ExecutionContext::NeverThrow,
"HipHop Strict Warning: ");
"HipHop Strict Warning: ");
}
static int64_t g_warning_counter = 0;
@@ -123,7 +123,7 @@ void raise_warning(const std::string &msg) {
}
g_context->handleError(msg, errnum, true,
ExecutionContext::NeverThrow,
"HipHop Warning: ");
"HipHop Warning: ");
}
void raise_warning(const char *fmt, ...) {
@@ -143,13 +143,13 @@ void raise_warning(const char *fmt, ...) {
va_end(ap);
g_context->handleError(msg, errnum, true,
ExecutionContext::NeverThrow,
"HipHop Warning: ");
"HipHop Warning: ");
}
void raise_debugging(const std::string &msg) {
g_context->handleError(msg, ErrorConstants::WARNING, true,
ExecutionContext::NeverThrow,
"HipHop Warning: ");
"HipHop Warning: ");
}
void raise_debugging(const char *fmt, ...) {
@@ -173,7 +173,7 @@ void raise_notice(const std::string &msg) {
}
g_context->handleError(msg, errnum, true,
ExecutionContext::NeverThrow,
"HipHop Notice: ");
"HipHop Notice: ");
}
void raise_notice(const char *fmt, ...) {
@@ -193,7 +193,7 @@ void raise_notice(const char *fmt, ...) {
va_end(ap);
g_context->handleError(msg, errnum, true,
ExecutionContext::NeverThrow,
"HipHop Notice: ");
"HipHop Notice: ");
}
///////////////////////////////////////////////////////////////////////////////
+2 -2
Ver Arquivo
@@ -173,11 +173,11 @@ bool f_trigger_error(CStrRef error_msg,
} else if (error_type == k_E_USER_WARNING) {
g_context->handleError(msg, error_type, true,
ExecutionContext::NeverThrow,
"HipHop Warning: ");
"HipHop Warning: ");
} else if (error_type == k_E_USER_NOTICE) {
g_context->handleError(msg, error_type, true,
ExecutionContext::NeverThrow,
"HipHop Notice: ");
"HipHop Notice: ");
} else if (error_type == k_E_USER_DEPRECATED) {
g_context->handleError(msg, error_type, true,
ExecutionContext::NeverThrow,
+6 -6
Ver Arquivo
@@ -1,4 +1,4 @@
HipHop Warning: File not found: doesnotexist.php in hphp/test/vm/FPassC-2.php on line 14
HipHop Warning: File not found: doesnotexist.php in hphp/test/vm/FPassC-2.php on line 14
bool(false)
NULL
object(stdClass) (0) {
@@ -8,19 +8,19 @@ object(stdClass) (0) {
object(stdClass) (0) {
}
==============================
HipHop Strict Warning: Only variables should be passed by reference in hphp/test/vm/FPassC-2.php on line 28
HipHop Strict Warning: Only variables should be passed by reference in hphp/test/vm/FPassC-2.php on line 28
NULL
NULL
HipHop Strict Warning: Only variables should be passed by reference in hphp/test/vm/FPassC-2.php on line 32
HipHop Strict Warning: Only variables should be passed by reference in hphp/test/vm/FPassC-2.php on line 32
string(3) "abc"
string(3) "abc"
HipHop Strict Warning: Only variables should be passed by reference in hphp/test/vm/FPassC-2.php on line 36
HipHop Strict Warning: Only variables should be passed by reference in hphp/test/vm/FPassC-2.php on line 36
int(0)
int(0)
HipHop Strict Warning: Only variables should be passed by reference in hphp/test/vm/FPassC-2.php on line 40
HipHop Strict Warning: Only variables should be passed by reference in hphp/test/vm/FPassC-2.php on line 40
int(1)
int(1)
HipHop Strict Warning: Only variables should be passed by reference in hphp/test/vm/FPassC-2.php on line 44
HipHop Strict Warning: Only variables should be passed by reference in hphp/test/vm/FPassC-2.php on line 44
NULL
NULL
==============================
+2 -2
Ver Arquivo
@@ -122,7 +122,7 @@ E Object
[postDec] => -1
)
--- null ---
HipHop Warning: Creating default object from empty value in hphp/test/vm/IncDecProp.php on line 98
HipHop Warning: Creating default object from empty value in hphp/test/vm/IncDecProp.php on line 98
int(1)
NULL
NULL
@@ -135,7 +135,7 @@ stdClass Object
[postDec] => <-- trailing whitespace
)
--- 42 ---
HipHop Warning: Attempt to increment/decrement property of non-object in hphp/test/vm/IncDecProp.php on line 106
HipHop Warning: Attempt to increment/decrement property of non-object in hphp/test/vm/IncDecProp.php on line 106
NULL
42
Test end
+4 -4
Ver Arquivo
@@ -8,9 +8,9 @@ array(1) {
}
}
}
HipHop Warning: Cannot use a scalar value as an array in hphp/test/vm/SetM.php on line 7
HipHop Warning: Cannot use a scalar value as an array in hphp/test/vm/SetM.php on line 7
int(4)
HipHop Warning: Cannot use a scalar value as an array in hphp/test/vm/SetM.php on line 11
HipHop Warning: Cannot use a scalar value as an array in hphp/test/vm/SetM.php on line 11
array(1) {
[0]=>
bool(true)
@@ -19,9 +19,9 @@ array(1) {
[0]=>
string(1) "x"
}
HipHop Warning: Illegal string offset: -1 in hphp/test/vm/SetM.php on line 19
HipHop Warning: Illegal string offset: -1 in hphp/test/vm/SetM.php on line 19
string(7) "abc e g"
int(1)
int(1)
HipHop Warning: Cannot use a scalar value as an array in hphp/test/vm/SetM.php on line 26
HipHop Warning: Cannot use a scalar value as an array in hphp/test/vm/SetM.php on line 26
NULL
+42 -42
Ver Arquivo
@@ -8,10 +8,10 @@ int(0)
int(0)
. string(2) "00"
string(2) "00"
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
bool(false)
bool(false)
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
bool(false)
bool(false)
& int(0)
@@ -106,10 +106,10 @@ int(0)
int(0)
. string(12) "0non-numeric"
string(12) "0non-numeric"
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
bool(false)
bool(false)
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
bool(false)
bool(false)
& int(0)
@@ -156,10 +156,10 @@ int(0)
int(0)
. string(1) "0"
string(1) "0"
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
bool(false)
bool(false)
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
bool(false)
bool(false)
& int(0)
@@ -182,10 +182,10 @@ int(123)
int(0)
. string(4) "1230"
string(4) "1230"
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
bool(false)
bool(false)
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
bool(false)
bool(false)
& int(0)
@@ -280,10 +280,10 @@ int(123)
int(0)
. string(14) "123non-numeric"
string(14) "123non-numeric"
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
bool(false)
bool(false)
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
bool(false)
bool(false)
& int(0)
@@ -330,10 +330,10 @@ int(123)
int(0)
. string(3) "123"
string(3) "123"
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
bool(false)
bool(false)
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
bool(false)
bool(false)
& int(0)
@@ -356,10 +356,10 @@ int(1)
int(0)
. string(2) "10"
string(2) "10"
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
bool(false)
bool(false)
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
bool(false)
bool(false)
& int(0)
@@ -454,10 +454,10 @@ int(1)
int(0)
. string(12) "1non-numeric"
string(12) "1non-numeric"
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
bool(false)
bool(false)
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
bool(false)
bool(false)
& int(0)
@@ -504,10 +504,10 @@ int(1)
int(0)
. string(1) "1"
string(1) "1"
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
bool(false)
bool(false)
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
bool(false)
bool(false)
& int(0)
@@ -530,10 +530,10 @@ float(123.456)
float(0)
. string(8) "123.4560"
string(8) "123.4560"
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
bool(false)
bool(false)
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
bool(false)
bool(false)
& int(0)
@@ -628,10 +628,10 @@ float(123.456)
float(0)
. string(18) "123.456non-numeric"
string(18) "123.456non-numeric"
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
bool(false)
bool(false)
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
bool(false)
bool(false)
& int(0)
@@ -678,10 +678,10 @@ float(123.456)
float(0)
. string(7) "123.456"
string(7) "123.456"
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
bool(false)
bool(false)
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
bool(false)
bool(false)
& int(0)
@@ -704,10 +704,10 @@ int(0)
int(0)
. string(12) "non-numeric0"
string(12) "non-numeric0"
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
bool(false)
bool(false)
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
bool(false)
bool(false)
& int(0)
@@ -802,10 +802,10 @@ int(0)
int(0)
. string(22) "non-numericnon-numeric"
string(22) "non-numericnon-numeric"
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
bool(false)
bool(false)
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
bool(false)
bool(false)
& string(11) "non-numeric"
@@ -852,10 +852,10 @@ int(0)
int(0)
. string(11) "non-numeric"
string(11) "non-numeric"
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
bool(false)
bool(false)
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
bool(false)
bool(false)
& int(0)
@@ -878,10 +878,10 @@ int(789)
int(0)
. string(4) "7890"
string(4) "7890"
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
bool(false)
bool(false)
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
bool(false)
bool(false)
& int(0)
@@ -976,10 +976,10 @@ int(789)
int(0)
. string(14) "789non-numeric"
string(14) "789non-numeric"
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
bool(false)
bool(false)
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
bool(false)
bool(false)
& string(3) "&(("
@@ -1026,10 +1026,10 @@ int(789)
int(0)
. string(3) "789"
string(3) "789"
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
bool(false)
bool(false)
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
bool(false)
bool(false)
& int(0)
@@ -1052,10 +1052,10 @@ int(0)
int(0)
. string(1) "0"
string(1) "0"
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
bool(false)
bool(false)
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
bool(false)
bool(false)
& int(0)
@@ -1150,10 +1150,10 @@ int(0)
int(0)
. string(11) "non-numeric"
string(11) "non-numeric"
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
bool(false)
bool(false)
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
bool(false)
bool(false)
& int(0)
@@ -1200,10 +1200,10 @@ int(0)
int(0)
. string(0) ""
string(0) ""
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
/ HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 40
bool(false)
bool(false)
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
% HipHop Warning: Division by zero in hphp/test/vm/SetOpH.php on line 45
bool(false)
bool(false)
& int(0)
+3 -3
Ver Arquivo
@@ -47,7 +47,7 @@ E Object
[p] => 1
)
HipHop Warning: Creating default object from empty value in hphp/test/vm/SetOpProp.php on line 59
HipHop Warning: Creating default object from empty value in hphp/test/vm/SetOpProp.php on line 59
stdClass Object
(
[a] => <a>
@@ -56,7 +56,7 @@ stdClass Object
[q] => 1
[r] => hello
)
HipHop Warning: Attempt to assign property of non-object in hphp/test/vm/SetOpProp.php on line 68
HipHop Warning: Attempt to assign property of non-object in hphp/test/vm/SetOpProp.php on line 69
HipHop Warning: Attempt to assign property of non-object in hphp/test/vm/SetOpProp.php on line 68
HipHop Warning: Attempt to assign property of non-object in hphp/test/vm/SetOpProp.php on line 69
42
Test end
+3 -3
Ver Arquivo
@@ -6,10 +6,10 @@ object(F) (2) {
string(5) "snoot"
}
int(12)
HipHop Notice: Undefined property: F::$foo in hphp/test/vm/UnsetProp.php on line 10
HipHop Notice: Undefined property: F::$foo in hphp/test/vm/UnsetProp.php on line 10
NULL
string(5) "snoot"
HipHop Notice: Undefined property: F::$bart in hphp/test/vm/UnsetProp.php on line 10
HipHop Notice: Undefined property: F::$bart in hphp/test/vm/UnsetProp.php on line 10
NULL
object(F) (0) {
}
@@ -28,6 +28,6 @@ foo
foo
Test end
string(4) "set1"
HipHop Notice: Undefined property: c2::$declprop in hphp/test/vm/UnsetProp.php on line 68
HipHop Notice: Undefined property: c2::$declprop in hphp/test/vm/UnsetProp.php on line 68
NULL
string(4) "set2"
+42 -42
Ver Arquivo
@@ -3,7 +3,7 @@ boolean(1) & integer(42) = integer(0)
boolean(1) & double(24.1987) = integer(0)
boolean(1) & string(str) = integer(0)
boolean(1) & array(Array) = integer(1)
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
boolean(1) & object(c) = integer(1)
boolean(1) & NULL() = integer(0)
integer(42) & boolean(1) = integer(0)
@@ -11,7 +11,7 @@ integer(42) & integer(42) = integer(42)
integer(42) & double(24.1987) = integer(8)
integer(42) & string(str) = integer(0)
integer(42) & array(Array) = integer(0)
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
integer(42) & object(c) = integer(0)
integer(42) & NULL() = integer(0)
double(24.1987) & boolean(1) = integer(0)
@@ -19,7 +19,7 @@ double(24.1987) & integer(42) = integer(8)
double(24.1987) & double(24.1987) = integer(24)
double(24.1987) & string(str) = integer(0)
double(24.1987) & array(Array) = integer(0)
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
double(24.1987) & object(c) = integer(0)
double(24.1987) & NULL() = integer(0)
string(str) & boolean(1) = integer(0)
@@ -27,7 +27,7 @@ string(str) & integer(42) = integer(0)
string(str) & double(24.1987) = integer(0)
string(str) & string(str) = string(str)
string(str) & array(Array) = integer(0)
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
string(str) & object(c) = integer(0)
string(str) & NULL() = integer(0)
array(Array) & boolean(1) = integer(1)
@@ -35,30 +35,30 @@ array(Array) & integer(42) = integer(0)
array(Array) & double(24.1987) = integer(0)
array(Array) & string(str) = integer(0)
array(Array) & array(Array) = integer(1)
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
array(Array) & object(c) = integer(1)
array(Array) & NULL() = integer(0)
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
object(c) & boolean(1) = integer(1)
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
object(c) & integer(42) = integer(0)
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
object(c) & double(24.1987) = integer(0)
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
object(c) & string(str) = integer(0)
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
object(c) & array(Array) = integer(1)
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
object(c) & object(c) = integer(1)
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
object(c) & NULL() = integer(0)
NULL() & boolean(1) = integer(0)
NULL() & integer(42) = integer(0)
NULL() & double(24.1987) = integer(0)
NULL() & string(str) = integer(0)
NULL() & array(Array) = integer(0)
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
NULL() & object(c) = integer(0)
NULL() & NULL() = integer(0)
boolean(1) ^ boolean(1) = integer(0)
@@ -66,7 +66,7 @@ boolean(1) ^ integer(42) = integer(43)
boolean(1) ^ double(24.1987) = integer(25)
boolean(1) ^ string(str) = integer(1)
boolean(1) ^ array(Array) = integer(0)
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
boolean(1) ^ object(c) = integer(0)
boolean(1) ^ NULL() = integer(1)
integer(42) ^ boolean(1) = integer(43)
@@ -74,7 +74,7 @@ integer(42) ^ integer(42) = integer(0)
integer(42) ^ double(24.1987) = integer(50)
integer(42) ^ string(str) = integer(42)
integer(42) ^ array(Array) = integer(43)
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
integer(42) ^ object(c) = integer(43)
integer(42) ^ NULL() = integer(42)
double(24.1987) ^ boolean(1) = integer(25)
@@ -82,14 +82,14 @@ double(24.1987) ^ integer(42) = integer(50)
double(24.1987) ^ double(24.1987) = integer(0)
double(24.1987) ^ string(str) = integer(24)
double(24.1987) ^ array(Array) = integer(25)
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
double(24.1987) ^ object(c) = integer(25)
double(24.1987) ^ NULL() = integer(24)
string(str) ^ boolean(1) = integer(1)
string(str) ^ integer(42) = integer(42)
string(str) ^ double(24.1987) = integer(24)
string(str) ^ string(str) = string(string(str) ^ array(Array) = integer(1)
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
string(str) ^ object(c) = integer(1)
string(str) ^ NULL() = integer(0)
array(Array) ^ boolean(1) = integer(0)
@@ -97,30 +97,30 @@ array(Array) ^ integer(42) = integer(43)
array(Array) ^ double(24.1987) = integer(25)
array(Array) ^ string(str) = integer(1)
array(Array) ^ array(Array) = integer(0)
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
array(Array) ^ object(c) = integer(0)
array(Array) ^ NULL() = integer(1)
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
object(c) ^ boolean(1) = integer(0)
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
object(c) ^ integer(42) = integer(43)
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
object(c) ^ double(24.1987) = integer(25)
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
object(c) ^ string(str) = integer(1)
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
object(c) ^ array(Array) = integer(0)
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
object(c) ^ object(c) = integer(0)
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
object(c) ^ NULL() = integer(1)
NULL() ^ boolean(1) = integer(1)
NULL() ^ integer(42) = integer(42)
NULL() ^ double(24.1987) = integer(24)
NULL() ^ string(str) = integer(0)
NULL() ^ array(Array) = integer(1)
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
NULL() ^ object(c) = integer(1)
NULL() ^ NULL() = integer(0)
boolean(1) | boolean(1) = integer(1)
@@ -128,7 +128,7 @@ boolean(1) | integer(42) = integer(43)
boolean(1) | double(24.1987) = integer(25)
boolean(1) | string(str) = integer(1)
boolean(1) | array(Array) = integer(1)
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
boolean(1) | object(c) = integer(1)
boolean(1) | NULL() = integer(1)
integer(42) | boolean(1) = integer(43)
@@ -136,7 +136,7 @@ integer(42) | integer(42) = integer(42)
integer(42) | double(24.1987) = integer(58)
integer(42) | string(str) = integer(42)
integer(42) | array(Array) = integer(43)
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
integer(42) | object(c) = integer(43)
integer(42) | NULL() = integer(42)
double(24.1987) | boolean(1) = integer(25)
@@ -144,7 +144,7 @@ double(24.1987) | integer(42) = integer(58)
double(24.1987) | double(24.1987) = integer(24)
double(24.1987) | string(str) = integer(24)
double(24.1987) | array(Array) = integer(25)
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
double(24.1987) | object(c) = integer(25)
double(24.1987) | NULL() = integer(24)
string(str) | boolean(1) = integer(1)
@@ -152,7 +152,7 @@ string(str) | integer(42) = integer(42)
string(str) | double(24.1987) = integer(24)
string(str) | string(str) = string(str)
string(str) | array(Array) = integer(1)
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
string(str) | object(c) = integer(1)
string(str) | NULL() = integer(0)
array(Array) | boolean(1) = integer(1)
@@ -160,30 +160,30 @@ array(Array) | integer(42) = integer(43)
array(Array) | double(24.1987) = integer(25)
array(Array) | string(str) = integer(1)
array(Array) | array(Array) = integer(1)
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
array(Array) | object(c) = integer(1)
array(Array) | NULL() = integer(1)
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
object(c) | boolean(1) = integer(1)
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
object(c) | integer(42) = integer(43)
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
object(c) | double(24.1987) = integer(25)
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
object(c) | string(str) = integer(1)
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
object(c) | array(Array) = integer(1)
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
object(c) | object(c) = integer(1)
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
object(c) | NULL() = integer(1)
NULL() | boolean(1) = integer(1)
NULL() | integer(42) = integer(42)
NULL() | double(24.1987) = integer(24)
NULL() | string(str) = integer(0)
NULL() | array(Array) = integer(1)
HipHop Notice: Object of class c could not be converted to int
HipHop Notice: Object of class c could not be converted to int
NULL() | object(c) = integer(1)
NULL() | NULL() = integer(0)
int(0)
+3 -3
Ver Arquivo
@@ -1,12 +1,12 @@
string(3) "bob"
int(24)
HipHop Warning: Cannot use a scalar value as an array in hphp/test/vm/cgetm_ge.php on line 30
HipHop Warning: Cannot use a scalar value as an array in hphp/test/vm/cgetm_ge.php on line 30
NULL
string(1) "3"
string(3) "bob"
int(24)
HipHop Warning: Cannot use a scalar value as an array in hphp/test/vm/cgetm_ge.php on line 35
HipHop Warning: Cannot use a scalar value as an array in hphp/test/vm/cgetm_ge.php on line 35
NULL
string(1) "3"
HipHop Notice: Undefined variable: doesnt_exist in hphp/test/vm/cgetm_ge.php on line 42
HipHop Notice: Undefined variable: doesnt_exist in hphp/test/vm/cgetm_ge.php on line 42
NULL
+2 -2
Ver Arquivo
@@ -2,12 +2,12 @@ Constructing
NULL
string(8) "ticktick"
string(4) "woof"
HipHop Notice: Undefined index: 3 in hphp/test/vm/cgetm_hee.php on line 27
HipHop Notice: Undefined index: 3 in hphp/test/vm/cgetm_hee.php on line 27
NULL
Destructing
NULL
string(8) "tocktock"
string(4) "meow"
HipHop Notice: Undefined index: 3 in hphp/test/vm/cgetm_hee.php on line 35
HipHop Notice: Undefined index: 3 in hphp/test/vm/cgetm_hee.php on line 35
NULL
Destructing
+1 -1
Ver Arquivo
@@ -1,3 +1,3 @@
baz
HipHop Notice: Undefined variable: unknown in hphp/test/vm/cgetm_ne.php on line 9
HipHop Notice: Undefined variable: unknown in hphp/test/vm/cgetm_ne.php on line 9
+1 -1
Ver Arquivo
@@ -10,7 +10,7 @@ string(6) "B::FOO"
string(6) "A::BAR"
string(6) "B::FOO"
string(6) "A::BAR"
HipHop Notice: Use of undefined constant WIZ - assumed 'WIZ' in hphp/test/vm/class_constants.php on line 22
HipHop Notice: Use of undefined constant WIZ - assumed 'WIZ' in hphp/test/vm/class_constants.php on line 22
string(3) "WIZ"
string(11) "--- WIZ ---"
string(3) "WIZ"
+7 -7
Ver Arquivo
@@ -2,19 +2,19 @@ object(A)#1 (1) {
["c":"A":private]=>
int(1)
}
HipHop Notice: Undefined variable: this in hphp/test/vm/closure_static.php on line 13
HipHop Notice: Undefined variable: this in hphp/test/vm/closure_static.php on line 13
NULL
HipHop Notice: Undefined variable: this in hphp/test/vm/closure_static.php on line 8
HipHop Notice: Undefined variable: this in hphp/test/vm/closure_static.php on line 8
NULL
HipHop Notice: Undefined variable: this in hphp/test/vm/closure_static.php on line 13
HipHop Notice: Undefined variable: this in hphp/test/vm/closure_static.php on line 13
NULL
HipHop Notice: Undefined variable: this in hphp/test/vm/closure_static.php on line 20
HipHop Notice: Undefined variable: this in hphp/test/vm/closure_static.php on line 20
NULL
HipHop Notice: Undefined variable: this in hphp/test/vm/closure_static.php on line 25
HipHop Notice: Undefined variable: this in hphp/test/vm/closure_static.php on line 25
NULL
HipHop Notice: Undefined variable: this in hphp/test/vm/closure_static.php on line 20
HipHop Notice: Undefined variable: this in hphp/test/vm/closure_static.php on line 20
NULL
HipHop Notice: Undefined variable: this in hphp/test/vm/closure_static.php on line 25
HipHop Notice: Undefined variable: this in hphp/test/vm/closure_static.php on line 25
NULL
array(3) {
[0]=>
+2 -2
Ver Arquivo
@@ -12,10 +12,10 @@ bool(false)
protected aa::blah
bool(true)
protected aa::blah
HipHop Notice: Undefined variable: this in hphp/test/vm/clsmethodf.php on line 11
HipHop Notice: Undefined variable: this in hphp/test/vm/clsmethodf.php on line 11
bool(true)
protected aa::blah
HipHop Notice: Undefined variable: this in hphp/test/vm/clsmethodf.php on line 11
HipHop Notice: Undefined variable: this in hphp/test/vm/clsmethodf.php on line 11
bool(true)
magic call to aa->fakemethod with 3 arguments
magic call to aa->fakemethod with 0 arguments
+2 -2
Ver Arquivo
@@ -5,7 +5,7 @@ float(9.007199254741E+15)
float(1.1)
float(0)
float(1)
HipHop Notice: Object of class C could not be converted to int in hphp/test/vm/cnvDbl.php on line 4
HipHop Notice: Object of class C could not be converted to int in hphp/test/vm/cnvDbl.php on line 4
float(1)
float(0)
float(0)
@@ -15,7 +15,7 @@ float(1)
float(0)
float(1.1)
float(0)
HipHop Notice: Object of class C could not be converted to int in hphp/test/vm/cnvDbl.php on line 50
HipHop Notice: Object of class C could not be converted to int in hphp/test/vm/cnvDbl.php on line 50
float(1)
float(0)
float(1)
+2 -2
Ver Arquivo
@@ -5,7 +5,7 @@ int(9007199254740992)
int(1)
int(0)
int(1)
HipHop Notice: Object of class C could not be converted to int in hphp/test/vm/cnvInt.php on line 4
HipHop Notice: Object of class C could not be converted to int in hphp/test/vm/cnvInt.php on line 4
int(1)
int(0)
int(0)
@@ -15,7 +15,7 @@ int(1)
int(0)
int(1)
int(0)
HipHop Notice: Object of class C could not be converted to int in hphp/test/vm/cnvInt.php on line 50
HipHop Notice: Object of class C could not be converted to int in hphp/test/vm/cnvInt.php on line 50
int(1)
int(0)
int(1)
+20 -20
Ver Arquivo
@@ -1,46 +1,46 @@
Test begin
HipHop Notice: Use of undefined constant CN - assumed 'CN' in hphp/test/vm/constants.php on line 16
HipHop Notice: Use of undefined constant CN - assumed 'CN' in hphp/test/vm/constants.php on line 16
string(2) "CN"
HipHop Notice: Use of undefined constant CB - assumed 'CB' in hphp/test/vm/constants.php on line 17
HipHop Notice: Use of undefined constant CB - assumed 'CB' in hphp/test/vm/constants.php on line 17
string(2) "CB"
HipHop Notice: Use of undefined constant CI - assumed 'CI' in hphp/test/vm/constants.php on line 18
HipHop Notice: Use of undefined constant CI - assumed 'CI' in hphp/test/vm/constants.php on line 18
string(2) "CI"
HipHop Notice: Use of undefined constant CD - assumed 'CD' in hphp/test/vm/constants.php on line 19
HipHop Notice: Use of undefined constant CD - assumed 'CD' in hphp/test/vm/constants.php on line 19
string(2) "CD"
HipHop Notice: Use of undefined constant CS - assumed 'CS' in hphp/test/vm/constants.php on line 20
HipHop Notice: Use of undefined constant CS - assumed 'CS' in hphp/test/vm/constants.php on line 20
string(2) "CS"
Enter f()
HipHop Notice: Use of undefined constant CN - assumed 'CN' in hphp/test/vm/constants.php on line 5
HipHop Notice: Use of undefined constant CN - assumed 'CN' in hphp/test/vm/constants.php on line 5
string(2) "CN"
HipHop Notice: Use of undefined constant CB - assumed 'CB' in hphp/test/vm/constants.php on line 6
HipHop Notice: Use of undefined constant CB - assumed 'CB' in hphp/test/vm/constants.php on line 6
string(2) "CB"
HipHop Notice: Use of undefined constant CI - assumed 'CI' in hphp/test/vm/constants.php on line 7
HipHop Notice: Use of undefined constant CI - assumed 'CI' in hphp/test/vm/constants.php on line 7
string(2) "CI"
HipHop Notice: Use of undefined constant CD - assumed 'CD' in hphp/test/vm/constants.php on line 8
HipHop Notice: Use of undefined constant CD - assumed 'CD' in hphp/test/vm/constants.php on line 8
string(2) "CD"
HipHop Notice: Use of undefined constant CS - assumed 'CS' in hphp/test/vm/constants.php on line 9
HipHop Notice: Use of undefined constant CS - assumed 'CS' in hphp/test/vm/constants.php on line 9
string(2) "CS"
Leave f()
HipHop Notice: Use of undefined constant CN - assumed 'CN' in hphp/test/vm/constants.php on line 22
HipHop Notice: Use of undefined constant CN - assumed 'CN' in hphp/test/vm/constants.php on line 22
string(2) "CN"
HipHop Notice: Use of undefined constant CB - assumed 'CB' in hphp/test/vm/constants.php on line 23
HipHop Notice: Use of undefined constant CB - assumed 'CB' in hphp/test/vm/constants.php on line 23
string(2) "CB"
HipHop Notice: Use of undefined constant CI - assumed 'CI' in hphp/test/vm/constants.php on line 24
HipHop Notice: Use of undefined constant CI - assumed 'CI' in hphp/test/vm/constants.php on line 24
string(2) "CI"
HipHop Notice: Use of undefined constant CD - assumed 'CD' in hphp/test/vm/constants.php on line 25
HipHop Notice: Use of undefined constant CD - assumed 'CD' in hphp/test/vm/constants.php on line 25
string(2) "CD"
HipHop Notice: Use of undefined constant CS - assumed 'CS' in hphp/test/vm/constants.php on line 26
HipHop Notice: Use of undefined constant CS - assumed 'CS' in hphp/test/vm/constants.php on line 26
string(2) "CS"
Enter f()
HipHop Notice: Use of undefined constant CN - assumed 'CN' in hphp/test/vm/constants.php on line 5
HipHop Notice: Use of undefined constant CN - assumed 'CN' in hphp/test/vm/constants.php on line 5
string(2) "CN"
HipHop Notice: Use of undefined constant CB - assumed 'CB' in hphp/test/vm/constants.php on line 6
HipHop Notice: Use of undefined constant CB - assumed 'CB' in hphp/test/vm/constants.php on line 6
string(2) "CB"
HipHop Notice: Use of undefined constant CI - assumed 'CI' in hphp/test/vm/constants.php on line 7
HipHop Notice: Use of undefined constant CI - assumed 'CI' in hphp/test/vm/constants.php on line 7
string(2) "CI"
HipHop Notice: Use of undefined constant CD - assumed 'CD' in hphp/test/vm/constants.php on line 8
HipHop Notice: Use of undefined constant CD - assumed 'CD' in hphp/test/vm/constants.php on line 8
string(2) "CD"
HipHop Notice: Use of undefined constant CS - assumed 'CS' in hphp/test/vm/constants.php on line 9
HipHop Notice: Use of undefined constant CS - assumed 'CS' in hphp/test/vm/constants.php on line 9
string(2) "CS"
Leave f()
NULL
+7 -7
Ver Arquivo
@@ -66,8 +66,8 @@ array(4) {
string(1) "d"
}
HipHop Warning: Invalid argument: function: method 'foo' not found in hphp/test/vm/cuf-call10.php on line 53
HipHop Warning: Invalid argument: function: method 'foo' not found in hphp/test/vm/cuf-call10.php on line 55
HipHop Warning: Invalid argument: function: method 'foo' not found in hphp/test/vm/cuf-call10.php on line 53
HipHop Warning: Invalid argument: function: method 'foo' not found in hphp/test/vm/cuf-call10.php on line 55
string(3) "foo"
array(4) {
[0]=>
@@ -99,8 +99,8 @@ array(3) {
[2]=>
int(3)
}
HipHop Warning: Invalid argument: function: method 'foo' not found in hphp/test/vm/cuf-call10.php on line 104
HipHop Warning: Invalid argument: function: method 'foo' not found in hphp/test/vm/cuf-call10.php on line 105
HipHop Warning: Invalid argument: function: method 'foo' not found in hphp/test/vm/cuf-call10.php on line 104
HipHop Warning: Invalid argument: function: method 'foo' not found in hphp/test/vm/cuf-call10.php on line 105
string(3) "foo"
array(3) {
[0]=>
@@ -137,10 +137,10 @@ array(3) {
[2]=>
int(3)
}
HipHop Warning: Invalid argument: function: method 'foo' not found in hphp/test/vm/cuf-call10.php on line 153
HipHop Warning: Invalid argument: function: method 'foo' not found in hphp/test/vm/cuf-call10.php on line 154
HipHop Warning: Invalid argument: function: method 'foo' not found in hphp/test/vm/cuf-call10.php on line 153
HipHop Warning: Invalid argument: function: method 'foo' not found in hphp/test/vm/cuf-call10.php on line 154
E9::__call
E9::__call
E9::__call
E9::__call
HipHop Warning: Invalid argument: function: method 'foo' not found in hphp/test/vm/cuf-call10.php on line 194
HipHop Warning: Invalid argument: function: method 'foo' not found in hphp/test/vm/cuf-call10.php on line 194
+2 -2
Ver Arquivo
@@ -6,5 +6,5 @@ D3::foo false
D3::foo false
D4::foo false
D4::foo false
HipHop Warning: Invalid argument: function: method 'foo' not found in hphp/test/vm/cuf-call11.php on line 97
HipHop Warning: Invalid argument: function: method 'foo' not found in hphp/test/vm/cuf-call11.php on line 98
HipHop Warning: Invalid argument: function: method 'foo' not found in hphp/test/vm/cuf-call11.php on line 97
HipHop Warning: Invalid argument: function: method 'foo' not found in hphp/test/vm/cuf-call11.php on line 98
+112 -112
Ver Arquivo
@@ -30,52 +30,52 @@ C D D
D D D
****************
B D D
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'C' in hphp/test/vm/cuf.php on line 119
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 120
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'F' in hphp/test/vm/cuf.php on line 121
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'G' in hphp/test/vm/cuf.php on line 122
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'H' in hphp/test/vm/cuf.php on line 123
HipHop Warning: behavior of call_user_func(array('B', 'parent::foo')) is undefined in hphp/test/vm/cuf.php on line 124
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'C' in hphp/test/vm/cuf.php on line 119
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 120
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'F' in hphp/test/vm/cuf.php on line 121
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'G' in hphp/test/vm/cuf.php on line 122
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'H' in hphp/test/vm/cuf.php on line 123
HipHop Warning: behavior of call_user_func(array('B', 'parent::foo')) is undefined in hphp/test/vm/cuf.php on line 124
A D D
HipHop Warning: behavior of call_user_func(array('B', 'self::foo')) is undefined in hphp/test/vm/cuf.php on line 125
HipHop Warning: behavior of call_user_func(array('B', 'self::foo')) is undefined in hphp/test/vm/cuf.php on line 125
B D D
HipHop Warning: behavior of call_user_func(array('B', 'static::foo')) is undefined in hphp/test/vm/cuf.php on line 126
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 126
HipHop Warning: behavior of call_user_func(array('B', 'static::foo')) is undefined in hphp/test/vm/cuf.php on line 126
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 126
****************
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'B' in hphp/test/vm/cuf.php on line 128
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'C' in hphp/test/vm/cuf.php on line 129
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 130
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'B' in hphp/test/vm/cuf.php on line 128
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'C' in hphp/test/vm/cuf.php on line 129
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 130
F F
G G
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'H' in hphp/test/vm/cuf.php on line 133
HipHop Warning: behavior of call_user_func(array('G', 'parent::foo')) is undefined in hphp/test/vm/cuf.php on line 134
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'H' in hphp/test/vm/cuf.php on line 133
HipHop Warning: behavior of call_user_func(array('G', 'parent::foo')) is undefined in hphp/test/vm/cuf.php on line 134
F F
HipHop Warning: behavior of call_user_func(array('G', 'self::foo')) is undefined in hphp/test/vm/cuf.php on line 135
HipHop Warning: behavior of call_user_func(array('G', 'self::foo')) is undefined in hphp/test/vm/cuf.php on line 135
G G
HipHop Warning: behavior of call_user_func(array('G', 'static::foo')) is undefined in hphp/test/vm/cuf.php on line 136
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 136
HipHop Warning: behavior of call_user_func(array('G', 'static::foo')) is undefined in hphp/test/vm/cuf.php on line 136
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 136
****************
B B B
B B B
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'C' in hphp/test/vm/cuf.php on line 141
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 142
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'F' in hphp/test/vm/cuf.php on line 143
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'G' in hphp/test/vm/cuf.php on line 144
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'H' in hphp/test/vm/cuf.php on line 145
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'C' in hphp/test/vm/cuf.php on line 141
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 142
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'F' in hphp/test/vm/cuf.php on line 143
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'G' in hphp/test/vm/cuf.php on line 144
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'H' in hphp/test/vm/cuf.php on line 145
A B B
B B B
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 148
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 148
****************
G G G
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'B' in hphp/test/vm/cuf.php on line 152
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'C' in hphp/test/vm/cuf.php on line 153
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 154
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'B' in hphp/test/vm/cuf.php on line 152
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'C' in hphp/test/vm/cuf.php on line 153
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 154
F G G
G G G
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'H' in hphp/test/vm/cuf.php on line 157
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'H' in hphp/test/vm/cuf.php on line 157
F G G
G G G
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 160
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 160
****************
############# testFoo2 ##############
B B
@@ -109,52 +109,52 @@ C D
D D
****************
B B
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'C' in hphp/test/vm/cuf.php on line 196
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 197
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'F' in hphp/test/vm/cuf.php on line 198
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'G' in hphp/test/vm/cuf.php on line 199
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'H' in hphp/test/vm/cuf.php on line 200
HipHop Warning: behavior of call_user_func(array('B', 'parent::foo')) is undefined in hphp/test/vm/cuf.php on line 201
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'C' in hphp/test/vm/cuf.php on line 196
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 197
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'F' in hphp/test/vm/cuf.php on line 198
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'G' in hphp/test/vm/cuf.php on line 199
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'H' in hphp/test/vm/cuf.php on line 200
HipHop Warning: behavior of call_user_func(array('B', 'parent::foo')) is undefined in hphp/test/vm/cuf.php on line 201
A D
HipHop Warning: behavior of call_user_func(array('B', 'self::foo')) is undefined in hphp/test/vm/cuf.php on line 202
HipHop Warning: behavior of call_user_func(array('B', 'self::foo')) is undefined in hphp/test/vm/cuf.php on line 202
B D
HipHop Warning: behavior of call_user_func(array('B', 'static::foo')) is undefined in hphp/test/vm/cuf.php on line 203
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 203
HipHop Warning: behavior of call_user_func(array('B', 'static::foo')) is undefined in hphp/test/vm/cuf.php on line 203
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 203
****************
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'B' in hphp/test/vm/cuf.php on line 205
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'C' in hphp/test/vm/cuf.php on line 206
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 207
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'B' in hphp/test/vm/cuf.php on line 205
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'C' in hphp/test/vm/cuf.php on line 206
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 207
F F
G G
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'H' in hphp/test/vm/cuf.php on line 210
HipHop Warning: behavior of call_user_func(array('G', 'parent::foo')) is undefined in hphp/test/vm/cuf.php on line 211
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'H' in hphp/test/vm/cuf.php on line 210
HipHop Warning: behavior of call_user_func(array('G', 'parent::foo')) is undefined in hphp/test/vm/cuf.php on line 211
F F
HipHop Warning: behavior of call_user_func(array('G', 'self::foo')) is undefined in hphp/test/vm/cuf.php on line 212
HipHop Warning: behavior of call_user_func(array('G', 'self::foo')) is undefined in hphp/test/vm/cuf.php on line 212
G G
HipHop Warning: behavior of call_user_func(array('G', 'static::foo')) is undefined in hphp/test/vm/cuf.php on line 213
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 213
HipHop Warning: behavior of call_user_func(array('G', 'static::foo')) is undefined in hphp/test/vm/cuf.php on line 213
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 213
****************
B B B
B B B
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'C' in hphp/test/vm/cuf.php on line 218
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 219
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'F' in hphp/test/vm/cuf.php on line 220
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'G' in hphp/test/vm/cuf.php on line 221
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'H' in hphp/test/vm/cuf.php on line 222
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'C' in hphp/test/vm/cuf.php on line 218
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 219
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'F' in hphp/test/vm/cuf.php on line 220
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'G' in hphp/test/vm/cuf.php on line 221
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'H' in hphp/test/vm/cuf.php on line 222
A B B
B B B
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 225
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 225
****************
G G G
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'B' in hphp/test/vm/cuf.php on line 229
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'C' in hphp/test/vm/cuf.php on line 230
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 231
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'B' in hphp/test/vm/cuf.php on line 229
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'C' in hphp/test/vm/cuf.php on line 230
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 231
F G G
G G G
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'H' in hphp/test/vm/cuf.php on line 234
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'H' in hphp/test/vm/cuf.php on line 234
F G G
G G G
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 237
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 237
****************
############# testBar1 ##############
B B
@@ -188,52 +188,52 @@ C D
D D
****************
B B
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'C' in hphp/test/vm/cuf.php on line 273
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 274
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'F' in hphp/test/vm/cuf.php on line 275
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'G' in hphp/test/vm/cuf.php on line 276
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'H' in hphp/test/vm/cuf.php on line 277
HipHop Warning: behavior of call_user_func(array('B', 'parent::bar')) is undefined in hphp/test/vm/cuf.php on line 278
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'C' in hphp/test/vm/cuf.php on line 273
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 274
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'F' in hphp/test/vm/cuf.php on line 275
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'G' in hphp/test/vm/cuf.php on line 276
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'H' in hphp/test/vm/cuf.php on line 277
HipHop Warning: behavior of call_user_func(array('B', 'parent::bar')) is undefined in hphp/test/vm/cuf.php on line 278
A D
HipHop Warning: behavior of call_user_func(array('B', 'self::bar')) is undefined in hphp/test/vm/cuf.php on line 279
HipHop Warning: behavior of call_user_func(array('B', 'self::bar')) is undefined in hphp/test/vm/cuf.php on line 279
B D
HipHop Warning: behavior of call_user_func(array('B', 'static::bar')) is undefined in hphp/test/vm/cuf.php on line 280
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 280
HipHop Warning: behavior of call_user_func(array('B', 'static::bar')) is undefined in hphp/test/vm/cuf.php on line 280
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 280
****************
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'B' in hphp/test/vm/cuf.php on line 282
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'C' in hphp/test/vm/cuf.php on line 283
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 284
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'B' in hphp/test/vm/cuf.php on line 282
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'C' in hphp/test/vm/cuf.php on line 283
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 284
F F
G G
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'H' in hphp/test/vm/cuf.php on line 287
HipHop Warning: behavior of call_user_func(array('G', 'parent::bar')) is undefined in hphp/test/vm/cuf.php on line 288
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'H' in hphp/test/vm/cuf.php on line 287
HipHop Warning: behavior of call_user_func(array('G', 'parent::bar')) is undefined in hphp/test/vm/cuf.php on line 288
F F
HipHop Warning: behavior of call_user_func(array('G', 'self::bar')) is undefined in hphp/test/vm/cuf.php on line 289
HipHop Warning: behavior of call_user_func(array('G', 'self::bar')) is undefined in hphp/test/vm/cuf.php on line 289
G G
HipHop Warning: behavior of call_user_func(array('G', 'static::bar')) is undefined in hphp/test/vm/cuf.php on line 290
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 290
HipHop Warning: behavior of call_user_func(array('G', 'static::bar')) is undefined in hphp/test/vm/cuf.php on line 290
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 290
****************
B B
B B
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'C' in hphp/test/vm/cuf.php on line 295
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 296
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'F' in hphp/test/vm/cuf.php on line 297
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'G' in hphp/test/vm/cuf.php on line 298
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'H' in hphp/test/vm/cuf.php on line 299
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'C' in hphp/test/vm/cuf.php on line 295
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 296
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'F' in hphp/test/vm/cuf.php on line 297
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'G' in hphp/test/vm/cuf.php on line 298
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'H' in hphp/test/vm/cuf.php on line 299
A B
B B
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 302
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 302
****************
G G
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'B' in hphp/test/vm/cuf.php on line 306
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'C' in hphp/test/vm/cuf.php on line 307
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 308
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'B' in hphp/test/vm/cuf.php on line 306
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'C' in hphp/test/vm/cuf.php on line 307
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 308
F G
G G
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'H' in hphp/test/vm/cuf.php on line 311
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'H' in hphp/test/vm/cuf.php on line 311
F G
G G
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 314
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 314
****************
############# testBar2 ##############
B B
@@ -267,52 +267,52 @@ C D
D D
****************
B B
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'C' in hphp/test/vm/cuf.php on line 350
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 351
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'F' in hphp/test/vm/cuf.php on line 352
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'G' in hphp/test/vm/cuf.php on line 353
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'H' in hphp/test/vm/cuf.php on line 354
HipHop Warning: behavior of call_user_func(array('B', 'parent::bar')) is undefined in hphp/test/vm/cuf.php on line 355
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'C' in hphp/test/vm/cuf.php on line 350
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 351
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'F' in hphp/test/vm/cuf.php on line 352
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'G' in hphp/test/vm/cuf.php on line 353
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'H' in hphp/test/vm/cuf.php on line 354
HipHop Warning: behavior of call_user_func(array('B', 'parent::bar')) is undefined in hphp/test/vm/cuf.php on line 355
A D
HipHop Warning: behavior of call_user_func(array('B', 'self::bar')) is undefined in hphp/test/vm/cuf.php on line 356
HipHop Warning: behavior of call_user_func(array('B', 'self::bar')) is undefined in hphp/test/vm/cuf.php on line 356
B D
HipHop Warning: behavior of call_user_func(array('B', 'static::bar')) is undefined in hphp/test/vm/cuf.php on line 357
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 357
HipHop Warning: behavior of call_user_func(array('B', 'static::bar')) is undefined in hphp/test/vm/cuf.php on line 357
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 357
****************
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'B' in hphp/test/vm/cuf.php on line 359
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'C' in hphp/test/vm/cuf.php on line 360
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 361
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'B' in hphp/test/vm/cuf.php on line 359
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'C' in hphp/test/vm/cuf.php on line 360
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 361
F F
G G
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'H' in hphp/test/vm/cuf.php on line 364
HipHop Warning: behavior of call_user_func(array('G', 'parent::bar')) is undefined in hphp/test/vm/cuf.php on line 365
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'H' in hphp/test/vm/cuf.php on line 364
HipHop Warning: behavior of call_user_func(array('G', 'parent::bar')) is undefined in hphp/test/vm/cuf.php on line 365
F F
HipHop Warning: behavior of call_user_func(array('G', 'self::bar')) is undefined in hphp/test/vm/cuf.php on line 366
HipHop Warning: behavior of call_user_func(array('G', 'self::bar')) is undefined in hphp/test/vm/cuf.php on line 366
G G
HipHop Warning: behavior of call_user_func(array('G', 'static::bar')) is undefined in hphp/test/vm/cuf.php on line 367
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 367
HipHop Warning: behavior of call_user_func(array('G', 'static::bar')) is undefined in hphp/test/vm/cuf.php on line 367
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 367
****************
B B
B B
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'C' in hphp/test/vm/cuf.php on line 372
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 373
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'F' in hphp/test/vm/cuf.php on line 374
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'G' in hphp/test/vm/cuf.php on line 375
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'H' in hphp/test/vm/cuf.php on line 376
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'C' in hphp/test/vm/cuf.php on line 372
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 373
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'F' in hphp/test/vm/cuf.php on line 374
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'G' in hphp/test/vm/cuf.php on line 375
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'H' in hphp/test/vm/cuf.php on line 376
A B
B B
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 379
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 379
****************
G G
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'B' in hphp/test/vm/cuf.php on line 383
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'C' in hphp/test/vm/cuf.php on line 384
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 385
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'B' in hphp/test/vm/cuf.php on line 383
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'C' in hphp/test/vm/cuf.php on line 384
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 385
F G
G G
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'H' in hphp/test/vm/cuf.php on line 388
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'H' in hphp/test/vm/cuf.php on line 388
F G
G G
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 391
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/cuf.php on line 391
****************
############# doFoo ##############
B B B
+10 -10
Ver Arquivo
@@ -2,37 +2,37 @@ C::foo
string(1) "C"
C::foo
string(1) "C"
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'C' is not a subclass of 'D' in hphp/test/vm/cuf03.php on line 20
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'C' is not a subclass of 'E' in hphp/test/vm/cuf03.php on line 21
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'C' is not a subclass of 'D' in hphp/test/vm/cuf03.php on line 20
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'C' is not a subclass of 'E' in hphp/test/vm/cuf03.php on line 21
C::bar
string(1) "C"
C::bar
string(1) "C"
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'C' is not a subclass of 'D' in hphp/test/vm/cuf03.php on line 25
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'C' is not a subclass of 'E' in hphp/test/vm/cuf03.php on line 26
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'C' is not a subclass of 'D' in hphp/test/vm/cuf03.php on line 25
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'C' is not a subclass of 'E' in hphp/test/vm/cuf03.php on line 26
D::foo
string(1) "D"
C::foo
string(1) "D"
D::foo
string(1) "D"
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'D' is not a subclass of 'E' in hphp/test/vm/cuf03.php on line 32
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'D' is not a subclass of 'E' in hphp/test/vm/cuf03.php on line 32
D::bar
string(1) "D"
C::bar
string(1) "D"
D::bar
string(1) "D"
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'D' is not a subclass of 'E' in hphp/test/vm/cuf03.php on line 37
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'D' is not a subclass of 'E' in hphp/test/vm/cuf03.php on line 37
E::foo
string(1) "E"
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'E' is not a subclass of 'C' in hphp/test/vm/cuf03.php on line 41
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'E' is not a subclass of 'D' in hphp/test/vm/cuf03.php on line 42
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'E' is not a subclass of 'C' in hphp/test/vm/cuf03.php on line 41
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'E' is not a subclass of 'D' in hphp/test/vm/cuf03.php on line 42
E::foo
string(1) "E"
E::bar
string(1) "E"
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'E' is not a subclass of 'C' in hphp/test/vm/cuf03.php on line 46
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'E' is not a subclass of 'D' in hphp/test/vm/cuf03.php on line 47
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'E' is not a subclass of 'C' in hphp/test/vm/cuf03.php on line 46
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'E' is not a subclass of 'D' in hphp/test/vm/cuf03.php on line 47
E::bar
string(1) "E"
+10 -10
Ver Arquivo
@@ -2,37 +2,37 @@ C::foo
string(1) "C"
C::foo
string(1) "C"
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'C' is not a subclass of 'D' in hphp/test/vm/cuf04.php on line 19
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'C' is not a subclass of 'E' in hphp/test/vm/cuf04.php on line 20
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'C' is not a subclass of 'D' in hphp/test/vm/cuf04.php on line 19
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'C' is not a subclass of 'E' in hphp/test/vm/cuf04.php on line 20
C::bar
string(1) "C"
C::bar
string(1) "C"
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'C' is not a subclass of 'D' in hphp/test/vm/cuf04.php on line 24
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'C' is not a subclass of 'E' in hphp/test/vm/cuf04.php on line 25
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'C' is not a subclass of 'D' in hphp/test/vm/cuf04.php on line 24
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'C' is not a subclass of 'E' in hphp/test/vm/cuf04.php on line 25
D::foo
string(1) "D"
C::foo
string(1) "C"
D::foo
string(1) "D"
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'D' is not a subclass of 'E' in hphp/test/vm/cuf04.php on line 30
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'D' is not a subclass of 'E' in hphp/test/vm/cuf04.php on line 30
D::bar
string(1) "D"
C::bar
string(1) "C"
D::bar
string(1) "D"
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'D' is not a subclass of 'E' in hphp/test/vm/cuf04.php on line 35
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'D' is not a subclass of 'E' in hphp/test/vm/cuf04.php on line 35
E::foo
string(1) "E"
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'E' is not a subclass of 'C' in hphp/test/vm/cuf04.php on line 38
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'E' is not a subclass of 'D' in hphp/test/vm/cuf04.php on line 39
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'E' is not a subclass of 'C' in hphp/test/vm/cuf04.php on line 38
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'E' is not a subclass of 'D' in hphp/test/vm/cuf04.php on line 39
E::foo
string(1) "E"
E::bar
string(1) "E"
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'E' is not a subclass of 'C' in hphp/test/vm/cuf04.php on line 43
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'E' is not a subclass of 'D' in hphp/test/vm/cuf04.php on line 44
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'E' is not a subclass of 'C' in hphp/test/vm/cuf04.php on line 43
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'E' is not a subclass of 'D' in hphp/test/vm/cuf04.php on line 44
E::bar
string(1) "E"
+3 -3
Ver Arquivo
@@ -26,7 +26,7 @@ array(1) {
[0]=>
&int(1)
}
HipHop Warning: Parameter 1 to bar() expected to be a reference, value given in hphp/test/vm/cuf05.php on line 13
HipHop Warning: Parameter 1 to bar() expected to be a reference, value given in hphp/test/vm/cuf05.php on line 13
int(1)
array(1) {
[0]=>
@@ -36,9 +36,9 @@ array(1) {
[0]=>
int(1)
}
HipHop Warning: Invalid argument: function: method 'baz' not found in hphp/test/vm/cuf05.php on line 18
HipHop Warning: Invalid argument: function: method 'baz' not found in hphp/test/vm/cuf05.php on line 18
NULL
HipHop Warning: Invalid argument: function: method 'baz' not found in hphp/test/vm/cuf05.php on line 19
HipHop Warning: Invalid argument: function: method 'baz' not found in hphp/test/vm/cuf05.php on line 19
NULL
array(2) {
[0]=>
+2 -2
Ver Arquivo
@@ -4,7 +4,7 @@ In A::__callStatic
In A::__callStatic
In A::__callStatic
In A::__callStatic
HipHop Warning: Invalid argument: function: method 'foo' not found in hphp/test/vm/cuf__callStatic1.php on line 33
HipHop Warning: Invalid argument: function: method 'foo' not found in hphp/test/vm/cuf__callStatic1.php on line 33
In A::__callStatic
In A::__callStatic
HipHop Warning: Invalid argument: function: method 'foo' not found in hphp/test/vm/cuf__callStatic1.php on line 22
HipHop Warning: Invalid argument: function: method 'foo' not found in hphp/test/vm/cuf__callStatic1.php on line 22
+1 -1
Ver Arquivo
@@ -1,3 +1,3 @@
__callStatic: Test
__callStatic: Test
HipHop Warning: Invalid argument: function: method 'Test' not found in hphp/test/vm/cuf__callStatic4.php on line 18
HipHop Warning: Invalid argument: function: method 'Test' not found in hphp/test/vm/cuf__callStatic4.php on line 18
+2 -2
Ver Arquivo
@@ -119,8 +119,8 @@ array(3) {
[2]=>
int(3)
}
HipHop Warning: Invalid argument: function: method 'foo' not found in hphp/test/vm/cuf__callStatic5.php on line 101
HipHop Warning: Invalid argument: function: method 'foo' not found in hphp/test/vm/cuf__callStatic5.php on line 102
HipHop Warning: Invalid argument: function: method 'foo' not found in hphp/test/vm/cuf__callStatic5.php on line 101
HipHop Warning: Invalid argument: function: method 'foo' not found in hphp/test/vm/cuf__callStatic5.php on line 102
string(3) "foo"
array(3) {
[0]=>
+3 -3
Ver Arquivo
@@ -1,5 +1,5 @@
HipHop Warning: Constant FOO already defined in hphp/test/vm/define.php on line 14
HipHop Warning: Constants may only evaluate to scalar values in hphp/test/vm/define.php on line 15
HipHop Warning: Constant FOO already defined in hphp/test/vm/define.php on line 14
HipHop Warning: Constants may only evaluate to scalar values in hphp/test/vm/define.php on line 15
int(42)
string(5) "hello"
=== Enter define_b.php ===
@@ -7,7 +7,7 @@ int(42)
string(5) "baz_b"
=== Leave define_b.php ===
string(5) "baz_b"
HipHop Warning: Constant BAZ already defined in hphp/test/vm/define.php on line 23
HipHop Warning: Constant BAZ already defined in hphp/test/vm/define.php on line 23
string(5) "baz_b"
HELLOHELLO
HipHop Fatal error: Cannot access static:: when no class scope is active in hphp/test/vm/define.php on line 34
+1 -1
Ver Arquivo
@@ -1 +1 @@
HipHop Warning: Illegal string offset: 21474869248 in hphp/test/vm/enormous-string.php on line 8
HipHop Warning: Illegal string offset: 21474869248 in hphp/test/vm/enormous-string.php on line 8
+1 -1
Ver Arquivo
@@ -1,4 +1,4 @@
HipHop Warning: Destructor threw an object exception: exception 'Exception' with message '' in hphp/test/vm/exceptions4.php:11
HipHop Warning: Destructor threw an object exception: exception 'Exception' with message '' in hphp/test/vm/exceptions4.php:11
Stack trace:
#0 hphp/test/vm/exceptions4.php(21): B->__destruct()
#1 {main} in hphp/test/vm/exceptions4.php on line 21
+4 -4
Ver Arquivo
@@ -1,4 +1,4 @@
HipHop Warning: get_class() called without object from outside a class
HipHop Warning: get_class() called without object from outside a class
array(1) {
[0]=>
bool(false)
@@ -7,7 +7,7 @@ array(1) {
[0]=>
bool(false)
}
HipHop Warning: Too many arguments for get_called_class(), expected 0
HipHop Warning: Too many arguments for get_called_class(), expected 0
array(1) {
[0]=>
NULL
@@ -16,12 +16,12 @@ array(1) {
[0]=>
string(12) "func_get_arg"
}
HipHop Warning: Too many arguments for func_get_args(), expected 0
HipHop Warning: Too many arguments for func_get_args(), expected 0
array(1) {
[0]=>
NULL
}
HipHop Warning: Too many arguments for func_num_args(), expected 0
HipHop Warning: Too many arguments for func_num_args(), expected 0
array(1) {
[0]=>
NULL
+112 -112
Ver Arquivo
@@ -30,52 +30,52 @@ C D D
D D D
****************
B D D
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'C' in hphp/test/vm/fsc.php on line 119
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 120
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'F' in hphp/test/vm/fsc.php on line 121
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'G' in hphp/test/vm/fsc.php on line 122
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'H' in hphp/test/vm/fsc.php on line 123
HipHop Warning: behavior of call_user_func(array('B', 'parent::foo')) is undefined in hphp/test/vm/fsc.php on line 124
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'C' in hphp/test/vm/fsc.php on line 119
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 120
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'F' in hphp/test/vm/fsc.php on line 121
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'G' in hphp/test/vm/fsc.php on line 122
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'H' in hphp/test/vm/fsc.php on line 123
HipHop Warning: behavior of call_user_func(array('B', 'parent::foo')) is undefined in hphp/test/vm/fsc.php on line 124
A D D
HipHop Warning: behavior of call_user_func(array('B', 'self::foo')) is undefined in hphp/test/vm/fsc.php on line 125
HipHop Warning: behavior of call_user_func(array('B', 'self::foo')) is undefined in hphp/test/vm/fsc.php on line 125
B D D
HipHop Warning: behavior of call_user_func(array('B', 'static::foo')) is undefined in hphp/test/vm/fsc.php on line 126
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 126
HipHop Warning: behavior of call_user_func(array('B', 'static::foo')) is undefined in hphp/test/vm/fsc.php on line 126
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 126
****************
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'B' in hphp/test/vm/fsc.php on line 128
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'C' in hphp/test/vm/fsc.php on line 129
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 130
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'B' in hphp/test/vm/fsc.php on line 128
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'C' in hphp/test/vm/fsc.php on line 129
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 130
F F
G G
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'H' in hphp/test/vm/fsc.php on line 133
HipHop Warning: behavior of call_user_func(array('G', 'parent::foo')) is undefined in hphp/test/vm/fsc.php on line 134
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'H' in hphp/test/vm/fsc.php on line 133
HipHop Warning: behavior of call_user_func(array('G', 'parent::foo')) is undefined in hphp/test/vm/fsc.php on line 134
F F
HipHop Warning: behavior of call_user_func(array('G', 'self::foo')) is undefined in hphp/test/vm/fsc.php on line 135
HipHop Warning: behavior of call_user_func(array('G', 'self::foo')) is undefined in hphp/test/vm/fsc.php on line 135
G G
HipHop Warning: behavior of call_user_func(array('G', 'static::foo')) is undefined in hphp/test/vm/fsc.php on line 136
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 136
HipHop Warning: behavior of call_user_func(array('G', 'static::foo')) is undefined in hphp/test/vm/fsc.php on line 136
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 136
****************
B B B
B B B
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'C' in hphp/test/vm/fsc.php on line 141
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 142
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'F' in hphp/test/vm/fsc.php on line 143
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'G' in hphp/test/vm/fsc.php on line 144
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'H' in hphp/test/vm/fsc.php on line 145
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'C' in hphp/test/vm/fsc.php on line 141
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 142
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'F' in hphp/test/vm/fsc.php on line 143
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'G' in hphp/test/vm/fsc.php on line 144
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'H' in hphp/test/vm/fsc.php on line 145
A B B
B B B
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 148
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 148
****************
G G G
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'B' in hphp/test/vm/fsc.php on line 152
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'C' in hphp/test/vm/fsc.php on line 153
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 154
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'B' in hphp/test/vm/fsc.php on line 152
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'C' in hphp/test/vm/fsc.php on line 153
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 154
F G G
G G G
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'H' in hphp/test/vm/fsc.php on line 157
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'H' in hphp/test/vm/fsc.php on line 157
F G G
G G G
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 160
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 160
****************
############# testFoo2 ##############
B B
@@ -109,52 +109,52 @@ C D
D D
****************
B D
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'C' in hphp/test/vm/fsc.php on line 196
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 197
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'F' in hphp/test/vm/fsc.php on line 198
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'G' in hphp/test/vm/fsc.php on line 199
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'H' in hphp/test/vm/fsc.php on line 200
HipHop Warning: behavior of call_user_func(array('B', 'parent::foo')) is undefined in hphp/test/vm/fsc.php on line 201
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'C' in hphp/test/vm/fsc.php on line 196
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 197
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'F' in hphp/test/vm/fsc.php on line 198
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'G' in hphp/test/vm/fsc.php on line 199
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'H' in hphp/test/vm/fsc.php on line 200
HipHop Warning: behavior of call_user_func(array('B', 'parent::foo')) is undefined in hphp/test/vm/fsc.php on line 201
A D
HipHop Warning: behavior of call_user_func(array('B', 'self::foo')) is undefined in hphp/test/vm/fsc.php on line 202
HipHop Warning: behavior of call_user_func(array('B', 'self::foo')) is undefined in hphp/test/vm/fsc.php on line 202
B D
HipHop Warning: behavior of call_user_func(array('B', 'static::foo')) is undefined in hphp/test/vm/fsc.php on line 203
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 203
HipHop Warning: behavior of call_user_func(array('B', 'static::foo')) is undefined in hphp/test/vm/fsc.php on line 203
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 203
****************
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'B' in hphp/test/vm/fsc.php on line 205
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'C' in hphp/test/vm/fsc.php on line 206
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 207
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'B' in hphp/test/vm/fsc.php on line 205
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'C' in hphp/test/vm/fsc.php on line 206
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 207
F F
G G
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'H' in hphp/test/vm/fsc.php on line 210
HipHop Warning: behavior of call_user_func(array('G', 'parent::foo')) is undefined in hphp/test/vm/fsc.php on line 211
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'H' in hphp/test/vm/fsc.php on line 210
HipHop Warning: behavior of call_user_func(array('G', 'parent::foo')) is undefined in hphp/test/vm/fsc.php on line 211
F F
HipHop Warning: behavior of call_user_func(array('G', 'self::foo')) is undefined in hphp/test/vm/fsc.php on line 212
HipHop Warning: behavior of call_user_func(array('G', 'self::foo')) is undefined in hphp/test/vm/fsc.php on line 212
G G
HipHop Warning: behavior of call_user_func(array('G', 'static::foo')) is undefined in hphp/test/vm/fsc.php on line 213
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 213
HipHop Warning: behavior of call_user_func(array('G', 'static::foo')) is undefined in hphp/test/vm/fsc.php on line 213
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 213
****************
B B B
B B B
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'C' in hphp/test/vm/fsc.php on line 218
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 219
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'F' in hphp/test/vm/fsc.php on line 220
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'G' in hphp/test/vm/fsc.php on line 221
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'H' in hphp/test/vm/fsc.php on line 222
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'C' in hphp/test/vm/fsc.php on line 218
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 219
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'F' in hphp/test/vm/fsc.php on line 220
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'G' in hphp/test/vm/fsc.php on line 221
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'H' in hphp/test/vm/fsc.php on line 222
A B B
B B B
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 225
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 225
****************
G G G
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'B' in hphp/test/vm/fsc.php on line 229
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'C' in hphp/test/vm/fsc.php on line 230
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 231
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'B' in hphp/test/vm/fsc.php on line 229
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'C' in hphp/test/vm/fsc.php on line 230
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 231
F G G
G G G
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'H' in hphp/test/vm/fsc.php on line 234
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'H' in hphp/test/vm/fsc.php on line 234
F G G
G G G
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 237
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 237
****************
############# testBar1 ##############
B B
@@ -188,52 +188,52 @@ C D
D D
****************
B D
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'C' in hphp/test/vm/fsc.php on line 273
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 274
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'F' in hphp/test/vm/fsc.php on line 275
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'G' in hphp/test/vm/fsc.php on line 276
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'H' in hphp/test/vm/fsc.php on line 277
HipHop Warning: behavior of call_user_func(array('B', 'parent::bar')) is undefined in hphp/test/vm/fsc.php on line 278
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'C' in hphp/test/vm/fsc.php on line 273
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 274
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'F' in hphp/test/vm/fsc.php on line 275
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'G' in hphp/test/vm/fsc.php on line 276
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'H' in hphp/test/vm/fsc.php on line 277
HipHop Warning: behavior of call_user_func(array('B', 'parent::bar')) is undefined in hphp/test/vm/fsc.php on line 278
A D
HipHop Warning: behavior of call_user_func(array('B', 'self::bar')) is undefined in hphp/test/vm/fsc.php on line 279
HipHop Warning: behavior of call_user_func(array('B', 'self::bar')) is undefined in hphp/test/vm/fsc.php on line 279
B D
HipHop Warning: behavior of call_user_func(array('B', 'static::bar')) is undefined in hphp/test/vm/fsc.php on line 280
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 280
HipHop Warning: behavior of call_user_func(array('B', 'static::bar')) is undefined in hphp/test/vm/fsc.php on line 280
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 280
****************
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'B' in hphp/test/vm/fsc.php on line 282
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'C' in hphp/test/vm/fsc.php on line 283
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 284
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'B' in hphp/test/vm/fsc.php on line 282
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'C' in hphp/test/vm/fsc.php on line 283
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 284
F F
G G
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'H' in hphp/test/vm/fsc.php on line 287
HipHop Warning: behavior of call_user_func(array('G', 'parent::bar')) is undefined in hphp/test/vm/fsc.php on line 288
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'H' in hphp/test/vm/fsc.php on line 287
HipHop Warning: behavior of call_user_func(array('G', 'parent::bar')) is undefined in hphp/test/vm/fsc.php on line 288
F F
HipHop Warning: behavior of call_user_func(array('G', 'self::bar')) is undefined in hphp/test/vm/fsc.php on line 289
HipHop Warning: behavior of call_user_func(array('G', 'self::bar')) is undefined in hphp/test/vm/fsc.php on line 289
G G
HipHop Warning: behavior of call_user_func(array('G', 'static::bar')) is undefined in hphp/test/vm/fsc.php on line 290
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 290
HipHop Warning: behavior of call_user_func(array('G', 'static::bar')) is undefined in hphp/test/vm/fsc.php on line 290
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 290
****************
B D
B D
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'C' in hphp/test/vm/fsc.php on line 295
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 296
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'F' in hphp/test/vm/fsc.php on line 297
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'G' in hphp/test/vm/fsc.php on line 298
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'H' in hphp/test/vm/fsc.php on line 299
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'C' in hphp/test/vm/fsc.php on line 295
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 296
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'F' in hphp/test/vm/fsc.php on line 297
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'G' in hphp/test/vm/fsc.php on line 298
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'H' in hphp/test/vm/fsc.php on line 299
A D
B D
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 302
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 302
****************
G G
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'B' in hphp/test/vm/fsc.php on line 306
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'C' in hphp/test/vm/fsc.php on line 307
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 308
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'B' in hphp/test/vm/fsc.php on line 306
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'C' in hphp/test/vm/fsc.php on line 307
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 308
F G
G G
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'H' in hphp/test/vm/fsc.php on line 311
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'H' in hphp/test/vm/fsc.php on line 311
F G
G G
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 314
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 314
****************
############# testBar2 ##############
B B
@@ -267,52 +267,52 @@ C D
D D
****************
B D
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'C' in hphp/test/vm/fsc.php on line 350
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 351
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'F' in hphp/test/vm/fsc.php on line 352
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'G' in hphp/test/vm/fsc.php on line 353
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'H' in hphp/test/vm/fsc.php on line 354
HipHop Warning: behavior of call_user_func(array('B', 'parent::bar')) is undefined in hphp/test/vm/fsc.php on line 355
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'C' in hphp/test/vm/fsc.php on line 350
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 351
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'F' in hphp/test/vm/fsc.php on line 352
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'G' in hphp/test/vm/fsc.php on line 353
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'H' in hphp/test/vm/fsc.php on line 354
HipHop Warning: behavior of call_user_func(array('B', 'parent::bar')) is undefined in hphp/test/vm/fsc.php on line 355
A D
HipHop Warning: behavior of call_user_func(array('B', 'self::bar')) is undefined in hphp/test/vm/fsc.php on line 356
HipHop Warning: behavior of call_user_func(array('B', 'self::bar')) is undefined in hphp/test/vm/fsc.php on line 356
B D
HipHop Warning: behavior of call_user_func(array('B', 'static::bar')) is undefined in hphp/test/vm/fsc.php on line 357
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 357
HipHop Warning: behavior of call_user_func(array('B', 'static::bar')) is undefined in hphp/test/vm/fsc.php on line 357
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 357
****************
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'B' in hphp/test/vm/fsc.php on line 359
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'C' in hphp/test/vm/fsc.php on line 360
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 361
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'B' in hphp/test/vm/fsc.php on line 359
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'C' in hphp/test/vm/fsc.php on line 360
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 361
F F
G G
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'H' in hphp/test/vm/fsc.php on line 364
HipHop Warning: behavior of call_user_func(array('G', 'parent::bar')) is undefined in hphp/test/vm/fsc.php on line 365
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'H' in hphp/test/vm/fsc.php on line 364
HipHop Warning: behavior of call_user_func(array('G', 'parent::bar')) is undefined in hphp/test/vm/fsc.php on line 365
F F
HipHop Warning: behavior of call_user_func(array('G', 'self::bar')) is undefined in hphp/test/vm/fsc.php on line 366
HipHop Warning: behavior of call_user_func(array('G', 'self::bar')) is undefined in hphp/test/vm/fsc.php on line 366
G G
HipHop Warning: behavior of call_user_func(array('G', 'static::bar')) is undefined in hphp/test/vm/fsc.php on line 367
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 367
HipHop Warning: behavior of call_user_func(array('G', 'static::bar')) is undefined in hphp/test/vm/fsc.php on line 367
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 367
****************
B D
B D
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'C' in hphp/test/vm/fsc.php on line 372
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 373
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'F' in hphp/test/vm/fsc.php on line 374
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'G' in hphp/test/vm/fsc.php on line 375
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'H' in hphp/test/vm/fsc.php on line 376
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'C' in hphp/test/vm/fsc.php on line 372
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 373
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'F' in hphp/test/vm/fsc.php on line 374
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'G' in hphp/test/vm/fsc.php on line 375
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'H' in hphp/test/vm/fsc.php on line 376
A D
B D
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 379
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'B' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 379
****************
G G
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'B' in hphp/test/vm/fsc.php on line 383
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'C' in hphp/test/vm/fsc.php on line 384
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 385
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'B' in hphp/test/vm/fsc.php on line 383
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'C' in hphp/test/vm/fsc.php on line 384
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 385
F G
G G
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'H' in hphp/test/vm/fsc.php on line 388
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'H' in hphp/test/vm/fsc.php on line 388
F G
G G
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 391
HipHop Warning: call_user_func expects parameter 1 to be a valid callback, class 'G' is not a subclass of 'D' in hphp/test/vm/fsc.php on line 391
****************
############# doFoo ##############
B B B
+2 -2
Ver Arquivo
@@ -1,7 +1,7 @@
string(1) "A"
string(1) "A"
string(1) "A"
HipHop Warning: get_class() called without object from outside a class in hphp/test/vm/get_class.php on line 13
HipHop Warning: get_class() called without object from outside a class in hphp/test/vm/get_class.php on line 13
bool(false)
HipHop Warning: get_class() called without object from outside a class in hphp/test/vm/get_class.php on line 14
HipHop Warning: get_class() called without object from outside a class in hphp/test/vm/get_class.php on line 14
bool(false)
+1 -1
Ver Arquivo
@@ -1,2 +1,2 @@
HipHop Notice: Undefined variable: this in hphp/test/vm/hopt-exitslow.php on line 5
HipHop Notice: Undefined variable: this in hphp/test/vm/hopt-exitslow.php on line 5
bool(false)
+3 -3
Ver Arquivo
@@ -9,10 +9,10 @@ bool(true)
bool(false)
bool(true)
bool(true)
HipHop Warning: strlen() expects parameter 1 to be string, array given in hphp/test/vm/hopt-string-simp.php on line 62
HipHop Warning: strlen() expects parameter 1 to be string, array given in hphp/test/vm/hopt-string-simp.php on line 62
NULL
HipHop Warning: strlen() expects parameter 1 to be string, object given in hphp/test/vm/hopt-string-simp.php on line 69
HipHop Warning: strlen() expects parameter 1 to be string, object given in hphp/test/vm/hopt-string-simp.php on line 69
NULL
int(1)
HipHop Warning: strlen() expects parameter 1 to be string, object given in hphp/test/vm/hopt-string-simp.php on line 83
HipHop Warning: strlen() expects parameter 1 to be string, object given in hphp/test/vm/hopt-string-simp.php on line 83
NULL
+1 -1
Ver Arquivo
@@ -1,2 +1,2 @@
123
HipHop Notice: Undefined variable: d in hphp/test/vm/hopt_varenv.php on line 8
HipHop Notice: Undefined variable: d in hphp/test/vm/hopt_varenv.php on line 8
+1 -1
Ver Arquivo
@@ -1,7 +1,7 @@
=> PHP level errors
bad args:
string(0) ""
HipHop Warning: Too many arguments for idn_to_ascii(), expected 4 in hphp/test/vm/idn-uts46-errors.php on line 7
HipHop Warning: Too many arguments for idn_to_ascii(), expected 4 in hphp/test/vm/idn-uts46-errors.php on line 7
NULL
bad variant:
bool(false)
+2 -2
Ver Arquivo
@@ -13,8 +13,8 @@ f
int(4)
int(5)
int(6)
HipHop Notice: Undefined index: 1 in hphp/test/vm/list-assignment.php on line 23
HipHop Notice: Undefined index: 0 in hphp/test/vm/list-assignment.php on line 23
HipHop Notice: Undefined index: 1 in hphp/test/vm/list-assignment.php on line 23
HipHop Notice: Undefined index: 0 in hphp/test/vm/list-assignment.php on line 23
NULL
NULL
int(1)
+20 -20
Ver Arquivo
@@ -11,17 +11,17 @@ object(A)#1 (2) {
NULL
}
NULL
HipHop Notice: Undefined property: A::$x in hphp/test/vm/multidim_props.php on line 14
HipHop Warning: Cannot access property on non-object in hphp/test/vm/multidim_props.php on line 14
HipHop Warning: Cannot access property on non-object in hphp/test/vm/multidim_props.php on line 14
HipHop Warning: Cannot access property on non-object in hphp/test/vm/multidim_props.php on line 14
HipHop Warning: Cannot access property on non-object in hphp/test/vm/multidim_props.php on line 14
HipHop Notice: Undefined property: A::$x in hphp/test/vm/multidim_props.php on line 14
HipHop Warning: Cannot access property on non-object in hphp/test/vm/multidim_props.php on line 14
HipHop Warning: Cannot access property on non-object in hphp/test/vm/multidim_props.php on line 14
HipHop Warning: Cannot access property on non-object in hphp/test/vm/multidim_props.php on line 14
HipHop Warning: Cannot access property on non-object in hphp/test/vm/multidim_props.php on line 14
NULL
HipHop Notice: Undefined property: A::$x in hphp/test/vm/multidim_props.php on line 16
HipHop Warning: Cannot access property on non-object in hphp/test/vm/multidim_props.php on line 16
HipHop Warning: Cannot access property on non-object in hphp/test/vm/multidim_props.php on line 16
HipHop Warning: Cannot access property on non-object in hphp/test/vm/multidim_props.php on line 16
HipHop Warning: Cannot access property on non-object in hphp/test/vm/multidim_props.php on line 16
HipHop Notice: Undefined property: A::$x in hphp/test/vm/multidim_props.php on line 16
HipHop Warning: Cannot access property on non-object in hphp/test/vm/multidim_props.php on line 16
HipHop Warning: Cannot access property on non-object in hphp/test/vm/multidim_props.php on line 16
HipHop Warning: Cannot access property on non-object in hphp/test/vm/multidim_props.php on line 16
HipHop Warning: Cannot access property on non-object in hphp/test/vm/multidim_props.php on line 16
NULL
NULL
object(A)#1 (2) {
@@ -37,16 +37,16 @@ object(A)#1 (2) {
NULL
}
NULL
HipHop Notice: Undefined property: A::$x in hphp/test/vm/multidim_props.php on line 14
HipHop Warning: Cannot access property on non-object in hphp/test/vm/multidim_props.php on line 14
HipHop Warning: Cannot access property on non-object in hphp/test/vm/multidim_props.php on line 14
HipHop Warning: Cannot access property on non-object in hphp/test/vm/multidim_props.php on line 14
HipHop Warning: Cannot access property on non-object in hphp/test/vm/multidim_props.php on line 14
HipHop Notice: Undefined property: A::$x in hphp/test/vm/multidim_props.php on line 14
HipHop Warning: Cannot access property on non-object in hphp/test/vm/multidim_props.php on line 14
HipHop Warning: Cannot access property on non-object in hphp/test/vm/multidim_props.php on line 14
HipHop Warning: Cannot access property on non-object in hphp/test/vm/multidim_props.php on line 14
HipHop Warning: Cannot access property on non-object in hphp/test/vm/multidim_props.php on line 14
NULL
HipHop Notice: Undefined property: A::$x in hphp/test/vm/multidim_props.php on line 16
HipHop Warning: Cannot access property on non-object in hphp/test/vm/multidim_props.php on line 16
HipHop Warning: Cannot access property on non-object in hphp/test/vm/multidim_props.php on line 16
HipHop Warning: Cannot access property on non-object in hphp/test/vm/multidim_props.php on line 16
HipHop Warning: Cannot access property on non-object in hphp/test/vm/multidim_props.php on line 16
HipHop Notice: Undefined property: A::$x in hphp/test/vm/multidim_props.php on line 16
HipHop Warning: Cannot access property on non-object in hphp/test/vm/multidim_props.php on line 16
HipHop Warning: Cannot access property on non-object in hphp/test/vm/multidim_props.php on line 16
HipHop Warning: Cannot access property on non-object in hphp/test/vm/multidim_props.php on line 16
HipHop Warning: Cannot access property on non-object in hphp/test/vm/multidim_props.php on line 16
NULL
NULL
+3 -3
Ver Arquivo
@@ -1,8 +1,8 @@
one
HipHop Warning: Missing argument 2 to two() in hphp/test/vm/not-enough-args.php on line 4
HipHop Warning: Missing argument 2 to two() in hphp/test/vm/not-enough-args.php on line 4
two
HipHop Warning: Missing argument 2 to three() in hphp/test/vm/not-enough-args.php on line 5
HipHop Warning: Missing argument 3 to three() in hphp/test/vm/not-enough-args.php on line 5
HipHop Warning: Missing argument 2 to three() in hphp/test/vm/not-enough-args.php on line 5
HipHop Warning: Missing argument 3 to three() in hphp/test/vm/not-enough-args.php on line 5
three
one
HipHop Fatal error: Uncaught exception 'Exception' with message '2, Missing argument 2 to two()' in hphp/test/vm/not-enough-args.php:8\nStack trace:\n#0 hphp/test/vm/not-enough-args.php(4): error_handler()\n#1 hphp/test/vm/not-enough-args.php(17): two()\n#2 hphp/test/vm/not-enough-args.php(20): main()\n#3 {main}
+8 -8
Ver Arquivo
@@ -35,10 +35,10 @@
5 / "5.5" --> 0.90909090909091
5.5 / "5" --> 1.1
"5.5" / "5" --> 1.1
1 / 0 --> HipHop Warning: Division by zero in hphp/test/vm/ops.php on line 46
1.0 / 0 --> HipHop Warning: Division by zero in hphp/test/vm/ops.php on line 47
1 / 0.0 --> HipHop Warning: Division by zero in hphp/test/vm/ops.php on line 48
1.0 / 0.0 --> HipHop Warning: Division by zero in hphp/test/vm/ops.php on line 49
1 / 0 --> HipHop Warning: Division by zero in hphp/test/vm/ops.php on line 46
1.0 / 0 --> HipHop Warning: Division by zero in hphp/test/vm/ops.php on line 47
1 / 0.0 --> HipHop Warning: Division by zero in hphp/test/vm/ops.php on line 48
1.0 / 0.0 --> HipHop Warning: Division by zero in hphp/test/vm/ops.php on line 49
2 % 2 --> 0
2.5 % 5 --> 2
@@ -48,10 +48,10 @@
5 % "5.5" --> 0
5.5 % "5" --> 0
"5.5" % "5" --> 0
1 % 0 --> HipHop Warning: Division by zero in hphp/test/vm/ops.php on line 60
1.0 % 0 --> HipHop Warning: Division by zero in hphp/test/vm/ops.php on line 61
1 % 0.0 --> HipHop Warning: Division by zero in hphp/test/vm/ops.php on line 62
1.0 % 0.0 --> HipHop Warning: Division by zero in hphp/test/vm/ops.php on line 63
1 % 0 --> HipHop Warning: Division by zero in hphp/test/vm/ops.php on line 60
1.0 % 0 --> HipHop Warning: Division by zero in hphp/test/vm/ops.php on line 61
1 % 0.0 --> HipHop Warning: Division by zero in hphp/test/vm/ops.php on line 62
1.0 % 0.0 --> HipHop Warning: Division by zero in hphp/test/vm/ops.php on line 63
5 & 3 --> 1
5.0 & 3.0 --> 1
+7 -7
Ver Arquivo
@@ -11,13 +11,13 @@ T2::dubiousArgs 1
randObj: C
randObj: B
T1::dubiousArgs 2, 2
--HipHop Warning: Missing argument 1 to noSuchMethodBoyeee() in hphp/test/vm/poly-torture.php on line 41
HipHop Warning: Missing argument 2 to noSuchMethodBoyeee() in hphp/test/vm/poly-torture.php on line 41
HipHop Warning: Missing argument 3 to noSuchMethodBoyeee() in hphp/test/vm/poly-torture.php on line 41
HipHop Warning: Missing argument 4 to noSuchMethodBoyeee() in hphp/test/vm/poly-torture.php on line 41
HipHop Warning: Missing argument 5 to noSuchMethodBoyeee() in hphp/test/vm/poly-torture.php on line 41
HipHop Notice: Undefined variable: d in hphp/test/vm/poly-torture.php on line 41
HipHop Notice: Undefined variable: e in hphp/test/vm/poly-torture.php on line 41
--HipHop Warning: Missing argument 1 to noSuchMethodBoyeee() in hphp/test/vm/poly-torture.php on line 41
HipHop Warning: Missing argument 2 to noSuchMethodBoyeee() in hphp/test/vm/poly-torture.php on line 41
HipHop Warning: Missing argument 3 to noSuchMethodBoyeee() in hphp/test/vm/poly-torture.php on line 41
HipHop Warning: Missing argument 4 to noSuchMethodBoyeee() in hphp/test/vm/poly-torture.php on line 41
HipHop Warning: Missing argument 5 to noSuchMethodBoyeee() in hphp/test/vm/poly-torture.php on line 41
HipHop Notice: Undefined variable: d in hphp/test/vm/poly-torture.php on line 41
HipHop Notice: Undefined variable: e in hphp/test/vm/poly-torture.php on line 41
C also has this method with params:
--C also has this method with params: 3 4
randObj: A
+1 -1
Ver Arquivo
@@ -46,7 +46,7 @@ object(C)#3 (2) {
["y"]=>
int(1)
}
HipHop Notice: Undefined property: D::$y in hphp/test/vm/properties3.php on line 187
HipHop Notice: Undefined property: D::$y in hphp/test/vm/properties3.php on line 187
NULL
NULL
object(D)#4 (2) {
+3 -3
Ver Arquivo
@@ -1,13 +1,13 @@
Test begin
HipHop Warning: Cannot use a scalar value as an array in hphp/test/vm/setHelperPreError.php on line 8
HipHop Warning: Cannot use a scalar value as an array in hphp/test/vm/setHelperPreError.php on line 8
array(1) {
[0]=>
int(0)
}
int(1)
HipHop Warning: Cannot use a scalar value as an array in hphp/test/vm/setHelperPreError.php on line 17
HipHop Warning: Cannot use a scalar value as an array in hphp/test/vm/setHelperPreError.php on line 17
NULL
int(1)
HipHop Warning: Cannot use a scalar value as an array in hphp/test/vm/setHelperPreError.php on line 22
HipHop Warning: Cannot use a scalar value as an array in hphp/test/vm/setHelperPreError.php on line 22
NULL
Test end
+1 -1
Ver Arquivo
@@ -1,5 +1,5 @@
16807935
HipHop Notice: Undefined index: 15410 in hphp/test/vm/silencer.php on line 5
HipHop Notice: Undefined index: 15410 in hphp/test/vm/silencer.php on line 5
In f: 16807935
16807935
In f: 0
+1 -1
Ver Arquivo
@@ -169,7 +169,7 @@ array(2) {
int(0)
}
}
HipHop Warning: Invalid operand type was used: Invalid type used as key in hphp/test/vm/static_array.php on line 88
HipHop Warning: Invalid operand type was used: Invalid type used as key in hphp/test/vm/static_array.php on line 88
array(0) {
}
array(1) {
+1 -1
Ver Arquivo
@@ -1,2 +1,2 @@
HipHop Notice: Use of undefined constant D00Dz - assumed 'D00Dz' in hphp/test/vm/typechecks-dv.php on line 3
HipHop Notice: Use of undefined constant D00Dz - assumed 'D00Dz' in hphp/test/vm/typechecks-dv.php on line 3
D00Dzw00tHipHop Fatal error: Argument 1 passed to woot() must be an instance of string, int given in hphp/test/vm/typechecks-dv.php on line 5
+2 -2
Ver Arquivo
@@ -1,2 +1,2 @@
HipHop Notice: Undefined index: 123 in hphp/test/vm/undefined-index.php on line 4
HipHop Notice: Undefined property: stdClass::$flubb in hphp/test/vm/undefined-index.php on line 8
HipHop Notice: Undefined index: 123 in hphp/test/vm/undefined-index.php on line 4
HipHop Notice: Undefined property: stdClass::$flubb in hphp/test/vm/undefined-index.php on line 8
+2 -2
Ver Arquivo
@@ -1,2 +1,2 @@
HipHop Notice: Undefined variable: b in hphp/test/vm/undefined-variable.php on line 3
HipHop Notice: Undefined variable: a in hphp/test/vm/undefined-variable.php on line 9
HipHop Notice: Undefined variable: b in hphp/test/vm/undefined-variable.php on line 3
HipHop Notice: Undefined variable: a in hphp/test/vm/undefined-variable.php on line 9
+11 -11
Ver Arquivo
@@ -1,23 +1,23 @@
set:
HipHop Notice: Undefined variable: a in hphp/test/vm/undefined_is_type.php on line 5
HipHop Notice: Undefined variable: a in hphp/test/vm/undefined_is_type.php on line 5
nul: 1
HipHop Notice: Undefined variable: a in hphp/test/vm/undefined_is_type.php on line 6
HipHop Notice: Undefined variable: a in hphp/test/vm/undefined_is_type.php on line 6
str:
HipHop Notice: Undefined variable: a in hphp/test/vm/undefined_is_type.php on line 7
HipHop Notice: Undefined variable: a in hphp/test/vm/undefined_is_type.php on line 7
obj:
HipHop Notice: Undefined variable: a in hphp/test/vm/undefined_is_type.php on line 8
HipHop Notice: Undefined variable: a in hphp/test/vm/undefined_is_type.php on line 8
arr:
HipHop Notice: Undefined variable: a in hphp/test/vm/undefined_is_type.php on line 9
HipHop Notice: Undefined variable: a in hphp/test/vm/undefined_is_type.php on line 9
int:
HipHop Notice: Undefined variable: a in hphp/test/vm/undefined_is_type.php on line 10
HipHop Notice: Undefined variable: a in hphp/test/vm/undefined_is_type.php on line 10
integer:
HipHop Notice: Undefined variable: a in hphp/test/vm/undefined_is_type.php on line 11
HipHop Notice: Undefined variable: a in hphp/test/vm/undefined_is_type.php on line 11
long:
HipHop Notice: Undefined variable: a in hphp/test/vm/undefined_is_type.php on line 12
HipHop Notice: Undefined variable: a in hphp/test/vm/undefined_is_type.php on line 12
real:
HipHop Notice: Undefined variable: a in hphp/test/vm/undefined_is_type.php on line 13
HipHop Notice: Undefined variable: a in hphp/test/vm/undefined_is_type.php on line 13
double:
HipHop Notice: Undefined variable: a in hphp/test/vm/undefined_is_type.php on line 14
HipHop Notice: Undefined variable: a in hphp/test/vm/undefined_is_type.php on line 14
float:
HipHop Notice: Undefined variable: a in hphp/test/vm/undefined_is_type.php on line 15
HipHop Notice: Undefined variable: a in hphp/test/vm/undefined_is_type.php on line 15
bool: