diff --git a/collects/compiler/demodularizer/alpha.rkt b/collects/compiler/demodularizer/alpha.rkt index 7ca1b83e1a..9b459b6ca3 100644 --- a/collects/compiler/demodularizer/alpha.rkt +++ b/collects/compiler/demodularizer/alpha.rkt @@ -16,4 +16,4 @@ (prefix-toplevels p))])) (provide/contract - [alpha-vary-ctop (compilation-top? . -> . compilation-top?)]) \ No newline at end of file + [alpha-vary-ctop (compilation-top? . -> . compilation-top?)]) diff --git a/collects/compiler/demodularizer/batch.rkt b/collects/compiler/demodularizer/batch.rkt index 97ec868b12..9846a958b8 100644 --- a/collects/compiler/demodularizer/batch.rkt +++ b/collects/compiler/demodularizer/batch.rkt @@ -110,4 +110,4 @@ Here's the idea: [("-e" "--exclude-modules") mod "Exclude a module from being batched" (current-excluded-modules (set-add (current-excluded-modules) mod))] - #:args (filename) (main filename)) \ No newline at end of file + #:args (filename) (main filename)) diff --git a/collects/compiler/demodularizer/gc-toplevels.rkt b/collects/compiler/demodularizer/gc-toplevels.rkt index 765513b3cb..1118214a8e 100644 --- a/collects/compiler/demodularizer/gc-toplevels.rkt +++ b/collects/compiler/demodularizer/gc-toplevels.rkt @@ -275,4 +275,4 @@ first-update) (provide/contract - [gc-toplevels (compilation-top? . -> . compilation-top?)]) \ No newline at end of file + [gc-toplevels (compilation-top? . -> . compilation-top?)]) diff --git a/collects/compiler/demodularizer/merge.rkt b/collects/compiler/demodularizer/merge.rkt index f25dd63166..5c63e6d22b 100644 --- a/collects/compiler/demodularizer/merge.rkt +++ b/collects/compiler/demodularizer/merge.rkt @@ -170,4 +170,4 @@ (provide/contract [merge-compilation-top (-> get-modvar-rewrite/c compilation-top? - compilation-top?)]) \ No newline at end of file + compilation-top?)]) diff --git a/collects/compiler/demodularizer/module.rkt b/collects/compiler/demodularizer/module.rkt index faa47c49e7..48253dd7e2 100644 --- a/collects/compiler/demodularizer/module.rkt +++ b/collects/compiler/demodularizer/module.rkt @@ -31,4 +31,4 @@ #t))])) (provide/contract - [wrap-in-kernel-module (symbol? symbol? lang-info/c module-path-index? compilation-top? . -> . compilation-top?)]) \ No newline at end of file + [wrap-in-kernel-module (symbol? symbol? lang-info/c module-path-index? compilation-top? . -> . compilation-top?)]) diff --git a/collects/compiler/demodularizer/mpi.rkt b/collects/compiler/demodularizer/mpi.rkt index 3c86837115..10f8cd23a5 100644 --- a/collects/compiler/demodularizer/mpi.rkt +++ b/collects/compiler/demodularizer/mpi.rkt @@ -28,4 +28,4 @@ [MODULE-PATHS (parameter/c (or/c false/c hash?))] [current-module-path (parameter/c path-string?)] [mpi->path! (module-path-index? . -> . (or/c symbol? path?))] - [mpi->path* (module-path-index? . -> . (or/c symbol? path?))]) \ No newline at end of file + [mpi->path* (module-path-index? . -> . (or/c symbol? path?))]) diff --git a/collects/compiler/demodularizer/nodep.rkt b/collects/compiler/demodularizer/nodep.rkt index 0d8c01642d..56a5818450 100644 --- a/collects/compiler/demodularizer/nodep.rkt +++ b/collects/compiler/demodularizer/nodep.rkt @@ -186,4 +186,4 @@ [get-modvar-rewrite/c contract?] [current-excluded-modules (parameter/c set?)] [nodep-file (-> path-string? - (values compilation-top? lang-info/c module-path-index? get-modvar-rewrite/c))]) \ No newline at end of file + (values compilation-top? lang-info/c module-path-index? get-modvar-rewrite/c))]) diff --git a/collects/compiler/demodularizer/util.rkt b/collects/compiler/demodularizer/util.rkt index 1334e2911b..717dee8994 100644 --- a/collects/compiler/demodularizer/util.rkt +++ b/collects/compiler/demodularizer/util.rkt @@ -77,4 +77,4 @@ (values (unconstrained-domain-> any/c) (unconstrained-domain-> any/c)))] [lang-info/c contract?] - [build-compiled-path ((or/c path-string? (symbols 'relative) false/c) path-string? . -> . (or/c path-string? (symbols 'same 'up)))]) \ No newline at end of file + [build-compiled-path ((or/c path-string? (symbols 'relative) false/c) path-string? . -> . (or/c path-string? (symbols 'same 'up)))]) diff --git a/collects/tests/compiler/demodularizer/demod-test.rkt b/collects/tests/compiler/demodularizer/demod-test.rkt index dec2f03a96..ae13457942 100644 --- a/collects/tests/compiler/demodularizer/demod-test.rkt +++ b/collects/tests/compiler/demodularizer/demod-test.rkt @@ -46,4 +46,4 @@ (define ip (build-path tests i)) (when (modular-program? ip) (printf "Checking ~a\n" ip) - (test-on-program (path->string ip))))) \ No newline at end of file + (test-on-program (path->string ip))))) diff --git a/collects/tests/compiler/demodularizer/tests/kernel-5.rkt b/collects/tests/compiler/demodularizer/tests/kernel-5.rkt index 2cee709c7f..9b75f464c6 100644 --- a/collects/tests/compiler/demodularizer/tests/kernel-5.rkt +++ b/collects/tests/compiler/demodularizer/tests/kernel-5.rkt @@ -2,4 +2,4 @@ (#%require racket/private/map) (define-values (id) (λ (x) x)) (define-values (xs) (list 1 2 3 4 5)) - (map id (map id xs))) \ No newline at end of file + (map id (map id xs))) diff --git a/collects/tests/compiler/demodularizer/tests/racket-5.rkt b/collects/tests/compiler/demodularizer/tests/racket-5.rkt index a48b41da12..e4d92af6b9 100644 --- a/collects/tests/compiler/demodularizer/tests/racket-5.rkt +++ b/collects/tests/compiler/demodularizer/tests/racket-5.rkt @@ -1,2 +1,2 @@ #lang racket -5 \ No newline at end of file +5 diff --git a/collects/tests/compiler/regression.rkt b/collects/tests/compiler/regression.rkt index 4a2b58fdc4..4e6e8825ff 100644 --- a/collects/tests/compiler/regression.rkt +++ b/collects/tests/compiler/regression.rkt @@ -14,4 +14,4 @@ (set-cookie name val))) (test - (cookie? (make-cookie "name" "value"))) \ No newline at end of file + (cookie? (make-cookie "name" "value"))) diff --git a/collects/tests/compiler/zo-exs.rkt b/collects/tests/compiler/zo-exs.rkt index c395604236..fbf325980f 100644 --- a/collects/tests/compiler/zo-exs.rkt +++ b/collects/tests/compiler/zo-exs.rkt @@ -103,14 +103,14 @@ (list (current-directory)))) (roundtrip - (compilation-top - 0 + (compilation-top + 0 (prefix 0 empty empty) (cons #hash() #hash()))) (roundtrip - (compilation-top - 0 + (compilation-top + 0 (prefix 0 empty empty) - #hash()))) \ No newline at end of file + #hash()))) diff --git a/collects/tests/compiler/zo-test-util.rkt b/collects/tests/compiler/zo-test-util.rkt index cf5c40bd34..95dbc1c85b 100644 --- a/collects/tests/compiler/zo-test-util.rkt +++ b/collects/tests/compiler/zo-test-util.rkt @@ -9,4 +9,4 @@ [struct failure ([phase symbol?] [serious? boolean?] [msg string?])] - [struct success ([phase symbol?])]) \ No newline at end of file + [struct success ([phase symbol?])]) diff --git a/collects/tests/compiler/zo-test-worker.rkt b/collects/tests/compiler/zo-test-worker.rkt index 8442fb74f6..e46284548d 100644 --- a/collects/tests/compiler/zo-test-worker.rkt +++ b/collects/tests/compiler/zo-test-worker.rkt @@ -267,4 +267,4 @@ (command-line #:program "zo-test-worker" #:args (file) - (run-test file)) \ No newline at end of file + (run-test file))