mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 10:22:42 +01:00
33 lines
801 B
PHP
33 lines
801 B
PHP
<?php
|
|
|
|
final class PhabricatorXHPASTViewStreamController
|
|
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_tag(
|
|
'span',
|
|
array(
|
|
'title' => $title,
|
|
'class' => 'token',
|
|
),
|
|
$token->getValue());
|
|
}
|
|
|
|
return $this->buildXHPASTViewPanelResponse(
|
|
phutil_implode_html('', $tokens));
|
|
}
|
|
}
|