From a42b957573f48d73bd9d078002b0dc28c780c7c6 Mon Sep 17 00:00:00 2001 From: David Majda Date: Sat, 21 Aug 2010 15:38:17 +0200 Subject: [PATCH] Remove now mostly useless comment headers from the code --- src/compiler.js | 4 ---- src/peg.js | 8 -------- 2 files changed, 12 deletions(-) diff --git a/src/compiler.js b/src/compiler.js index 5578daf..f8a93e9 100644 --- a/src/compiler.js +++ b/src/compiler.js @@ -1,5 +1,3 @@ -/* ===== PEG.compiler ===== */ - PEG.compiler = { /* * Generates a parser from a specified grammar AST. Throws |PEG.GrammarError| @@ -33,8 +31,6 @@ PEG.compiler = { } }; -/* ===== Includes ===== */ - // @include "checks.js" // @include "passes.js" // @include "emitter.js" diff --git a/src/peg.js b/src/peg.js index 101e29c..21dc108 100644 --- a/src/peg.js +++ b/src/peg.js @@ -1,7 +1,5 @@ (function(global, undefined) { -/* ===== PEG ===== */ - var PEG = { /* * 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. */ PEG.GrammarError = function(message) { @@ -30,14 +26,10 @@ PEG.GrammarError = function(message) { PEG.GrammarError.prototype = Error.prototype; -/* ===== Includes ===== */ - // @include "utils.js" // @include "parser.js" // @include "compiler.js" -/* ===== Export ===== */ - global.PEG = PEG; })(this);