It's now only generated if something to put in it is specified via: %pragma(php) include=... or %pragma(php) code=...
12 lines
269 B
PHP
12 lines
269 B
PHP
<?php
|
|
|
|
require "tests.php";
|
|
|
|
// New functions
|
|
check::functions(array('is_python_builtin'));
|
|
// New classes
|
|
check::classes(array('StaticMemberTest','StaticFunctionTest','cpp_static','StaticBase','StaticDerived'));
|
|
// No new vars
|
|
check::globals(array());
|
|
|
|
check::done();
|