Lines Matching defs:code
66 $origCode = $code = file_get_contents($path); variable
69 $code = stripTrailingWhitespace($code); variable
73 $code = stripTrailingWhitespace($code); variable
74 $code = reindentToSpaces($code); variable
76 $code = transformTestCode($code, function(string $code) { variable
77 $code = stripTrailingWhitespace($code); variable
78 $code = reindentToSpaces($code); variable
88 function stripTrailingWhitespace(string $code): string {
92 function reindentToTabs(string $code): string {
102 function reindentToSpaces(string $code): string {
122 function transformTestCode(string $code, callable $transformer): string {