mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
47 lines
1.3 KiB
PHP
47 lines
1.3 KiB
PHP
<?php
|
|
|
|
ini_set('display_startup_errors', '1');
|
|
ini_set('html_errors', '1');
|
|
ini_set('memory_limit', '4G');
|
|
error_reporting(E_ALL);
|
|
|
|
gc_disable();
|
|
|
|
require dirname(__DIR__, 3) . '/vendor/autoload.php';
|
|
|
|
$a = file_get_contents(__DIR__ . '/a.test');
|
|
$b = file_get_contents(__DIR__ . '/b.test');
|
|
|
|
$a_stmts = Psalm\Internal\Provider\StatementsProvider::parseStatements($a, '7.4');
|
|
|
|
$time = microtime(true);
|
|
|
|
$file_changes = Psalm\Internal\Diff\FileDiffer::getDiff($a, $b);
|
|
$dlt = microtime(true);
|
|
$line_diff_time = $dlt - $time;
|
|
|
|
echo 'Partial parsing: diffing lines: ' . number_format($line_diff_time, 4) . "\n";
|
|
|
|
$traverser = new PhpParser\NodeTraverser;
|
|
$traverser->addVisitor(new Psalm\Internal\PhpVisitor\CloningVisitor);
|
|
// performs a deep clone
|
|
/** @var array<int, PhpParser\Node\Stmt> */
|
|
$a_stmts_copy = $traverser->traverse($a_stmts);
|
|
$dlt2 = microtime(true);
|
|
|
|
echo 'Partial parsing: cloning: ' . number_format($dlt2 - $dlt, 4) . "\n";
|
|
|
|
Psalm\Internal\Provider\StatementsProvider::parseStatements($b, '7.4', null, $a, $a_stmts_copy, $file_changes);
|
|
|
|
$diff_1 = microtime(true) - $time;
|
|
|
|
echo 'Partial parsing: ' . number_format($diff_1, 4) . "\n";
|
|
|
|
$time = microtime(true);
|
|
|
|
Psalm\Internal\Provider\StatementsProvider::parseStatements($b, '7.4');
|
|
|
|
$diff_2 = microtime(true) - $time;
|
|
|
|
echo 'Full parsing: ' . number_format($diff_2, 4) . "\n";
|