Remove now mostly useless comment headers from the code

redux
David Majda 14 years ago
parent d493a4d143
commit a42b957573

@ -1,5 +1,3 @@
/* ===== PEG.compiler ===== */
PEG.compiler = { PEG.compiler = {
/* /*
* Generates a parser from a specified grammar AST. Throws |PEG.GrammarError| * Generates a parser from a specified grammar AST. Throws |PEG.GrammarError|
@ -33,8 +31,6 @@ PEG.compiler = {
} }
}; };
/* ===== Includes ===== */
// @include "checks.js" // @include "checks.js"
// @include "passes.js" // @include "passes.js"
// @include "emitter.js" // @include "emitter.js"

@ -1,7 +1,5 @@
(function(global, undefined) { (function(global, undefined) {
/* ===== PEG ===== */
var PEG = { var PEG = {
/* /*
* Generates a parser from a specified grammar and returns it. * Generates a parser from a specified grammar and returns it.
@ -19,8 +17,6 @@ var PEG = {
} }
}; };
/* ===== PEG.GrammarError ===== */
/* Thrown when the grammar contains an error. */ /* Thrown when the grammar contains an error. */
PEG.GrammarError = function(message) { PEG.GrammarError = function(message) {
@ -30,14 +26,10 @@ PEG.GrammarError = function(message) {
PEG.GrammarError.prototype = Error.prototype; PEG.GrammarError.prototype = Error.prototype;
/* ===== Includes ===== */
// @include "utils.js" // @include "utils.js"
// @include "parser.js" // @include "parser.js"
// @include "compiler.js" // @include "compiler.js"
/* ===== Export ===== */
global.PEG = PEG; global.PEG = PEG;
})(this); })(this);

Loading…
Cancel
Save