Arquivos
hhvm/hphp/runtime/debugger/cmd/new_cmd.php
T
Owen Yamauchi 739450013f Move runtime/eval/debugger to runtime/debugger
runtime/eval is now gone. Woooo

This is just a git mv + `codemod runtime/eval/debugger runtime/debugger`
2013-06-03 23:54:35 -07:00

20 linhas
632 B
PHP

<?php
isset($argv[1]) || die("missing {name}:\n\tphp new_cmd.php {name}\n");
$NAME = strtoupper($Name = ucfirst($name = strtolower($argv[1])));
foreach (array('h', 'cpp') as $ext) {
exec("cp -f cmd.$ext.template cmd_$name.$ext");
foreach (array('machine' => $name, 'Machine' => $Name, 'MACHINE' => $NAME)
as $from => $to) {
exec("perl -p -i -n -e 's/$from/$to/g' cmd_$name.$ext");
}
}
if (!isset($argv[2])) {
$include = "#include <runtime/eval/debugger/cmd/cmd_$name.h>";
exec("perl -p -i -n -e 's!$include\n!!sg' all.h");
exec("perl -p -i -n -e 's!^(//tag: new_cmd\.php.*)$!$include\n$1!' all.h");
}