2011-04-07 04:17:05 +02:00
|
|
|
<?php
|
|
|
|
|
2012-03-10 00:46:25 +01:00
|
|
|
final class PhabricatorXHPASTViewStreamController
|
2011-04-07 04:17:05 +02:00
|
|
|
extends PhabricatorXHPASTViewPanelController {
|
|
|
|
|
|
|
|
public function processRequest() {
|
|
|
|
$storage = $this->getStorageTree();
|
|
|
|
$input = $storage->getInput();
|
|
|
|
$stdout = $storage->getStdout();
|
|
|
|
|
|
|
|
$tree = XHPASTTree::newFromDataAndResolvedExecFuture(
|
|
|
|
$input,
|
|
|
|
array(0, $stdout, ''));
|
|
|
|
|
|
|
|
$tokens = array();
|
|
|
|
foreach ($tree->getRawTokenStream() as $id => $token) {
|
|
|
|
$seq = $id;
|
|
|
|
$name = $token->getTypeName();
|
|
|
|
$title = "Token {$seq}: {$name}";
|
|
|
|
|
|
|
|
$tokens[] = phutil_render_tag(
|
|
|
|
'span',
|
|
|
|
array(
|
|
|
|
'title' => $title,
|
|
|
|
'class' => 'token',
|
|
|
|
),
|
|
|
|
phutil_escape_html($token->getValue()));
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->buildXHPASTViewPanelResponse(implode('', $tokens));
|
|
|
|
}
|
|
|
|
}
|