From b4b87208496b617fee25edcd75c2925da714c6d7 Mon Sep 17 00:00:00 2001 From: Gilles Castel Date: Thu, 31 Mar 2016 15:14:19 +0200 Subject: [PATCH] Center headings --- super-tiny-compiler.js | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/super-tiny-compiler.js b/super-tiny-compiler.js index 95b7fd6..f3d47cf 100644 --- a/super-tiny-compiler.js +++ b/super-tiny-compiler.js @@ -321,12 +321,12 @@ * So let's begin... */ - /** - * ============================================================================ - * (/^▽^)/ - * THE TOKENIZER! - * ============================================================================ - */ +/** + * ============================================================================ + * (/^▽^)/ + * THE TOKENIZER! + * ============================================================================ + */ /** * We're gonna start off with our first phase of parsing, lexical analysis, with @@ -478,7 +478,7 @@ function tokenizer(input) { /** * ============================================================================ * ヽ/❀o ل͜ o\ノ - * THE PARSER!!! + * THE PARSER!!! * ============================================================================ */ @@ -712,7 +712,7 @@ function traverser(ast, visitor) { /** * ============================================================================ - * ⁽(◍˃̵͈̑ᴗ˂̵͈̑)⁽ + * ⁽(◍˃̵͈̑ᴗ˂̵͈̑)⁽ * THE TRANSFORMER!!! * ============================================================================ */ @@ -835,7 +835,7 @@ function transformer(ast) { /** * ============================================================================ - * ヾ(〃^∇^)ノ♪ + * ヾ(〃^∇^)ノ♪ * THE CODE GENERATOR!!!! * ============================================================================ */ @@ -895,8 +895,8 @@ function codeGenerator(node) { /** * ============================================================================ - * (۶* ‘ヮ’)۶” - * !!!!!!!!THE COMPILER!!!!!!!! + * (۶* ‘ヮ’)۶” + * !!!!!!!!THE COMPILER!!!!!!!! * ============================================================================ */