mirror of
https://github.com/TiddlyWiki/TiddlyWiki5.git
synced 2026-04-28 15:14:42 +00:00
Replace pegs parser with Esprima
It preserves comments and text positions, enabling us to do syntax highlighting. Hopefully.
This commit is contained in:
58
node_modules/esprima/test/benchmarks.html
generated
vendored
Normal file
58
node_modules/esprima/test/benchmarks.html
generated
vendored
Normal file
@@ -0,0 +1,58 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Esprima: Benchmarks</title>
|
||||
<link rel="stylesheet" type="text/css" href="../assets/style.css"/>
|
||||
<script src="../esprima.js"></script>
|
||||
<script src="../assets/json2.js"></script>
|
||||
<script src="benchmarks.js"></script>
|
||||
<script src="3rdparty/benchmark.js"></script>
|
||||
<script src="3rdparty/XMLHttpRequest.js"></script>
|
||||
<script>
|
||||
/*jslint browser:true, sloppy:true */
|
||||
/*global setupBenchmarks:true*/
|
||||
window.onload = function () {
|
||||
window.setTimeout(setupBenchmarks, 211);
|
||||
};
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="container">
|
||||
|
||||
<div class="topbar">
|
||||
<ul class="nav">
|
||||
<li><a href="../index.html">← Home</a></li>
|
||||
<li><a href="http://github.com/ariya/esprima">Code</a></li>
|
||||
<li><a href="http://wiki.esprima.org">Documentation</a></li>
|
||||
<li><a href="http://issues.esprima.org">Issues</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<h1>Benchmarks <small>show the speed</small></h1>
|
||||
|
||||
<p>Time measurement is carried out using <a href="http://benchmarkjs.com" target="_blank">Benchmark.js</a><span id="benchmarkjs-version"></span>.</p>
|
||||
|
||||
<p>Esprima version <span id="version"></span>.</p>
|
||||
|
||||
<p id="status">Please wait...</p>
|
||||
|
||||
<p>
|
||||
<input id="runquick" type="submit" value="Run quick benchmarks" disabled xstyle="visibility: hidden;"/>
|
||||
<input id="runfull" type="submit" value="Run full benchmarks" disabled xstyle="visibility: hidden;"/>
|
||||
</p>
|
||||
|
||||
<p id="result"></p>
|
||||
|
||||
<p><strong>Note</strong>: On a modern machine and up-to-date web browsers,
|
||||
running full benchmarks suite takes around 1 minute.<br>
|
||||
For the quick benchmarks, the running time is only about 15 seconds.</p>
|
||||
|
||||
<div class="footer"><strong>Esprima</strong> is created by
|
||||
<a href="http://ariya.ofilabs.com/about" target="_blank">Ariya Hidayat</a>. Follow <a href="http://twitter.com/ariyahidayat">@ariyahidayat</a> on Twitter.
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user