Lines Matching defs:code
65 $origCode = $code = file_get_contents($path); variable
68 $code = stripTrailingWhitespace($code); variable
72 $code = stripTrailingWhitespace($code); variable
73 $code = reindentToSpaces($code); variable
75 $code = transformTestCode($code, function(string $code) { variable
76 $code = stripTrailingWhitespace($code); variable
77 $code = reindentToSpaces($code); variable
87 function stripTrailingWhitespace(string $code): string {
91 function reindentToTabs(string $code): string {
101 function reindentToSpaces(string $code): string {
121 function transformTestCode(string $code, callable $transformer): string {