Typehinting merge #50

已合并
belliash 2019-04-17 11:27:52 +02:00 将 298 次代码提交从 typehinting合并至 master
修改 2 个文件,包含 20 行新增0 行删除
仅显示提交 6b86f4c855 的更改 - 显示所有提交

19
tests/assertion_test.aer 普通文件
查看文件

@@ -0,0 +1,19 @@
class Program {
void test_assert(mixed $param) {
assert("is_bool($param);");
}
void main() {
callback $a = void(string $file, int $line, string $code) {
print("Assertion failed ...\n");
};
assert_options(ASSERT_ACTIVE, true);
assert_options(ASSERT_BAIL, false);
assert_options(ASSERT_WARNING, false);
assert_options(ASSERT_CALLBACK, $a);
$this->test_assert(true);
$this->test_assert(1);
}
}

1
tests/assertion_test.exp 普通文件
查看文件

@@ -0,0 +1 @@
Assertion failed ...