diff options
author | Rubén <rubrinbla@gmail.com> | 2017-10-02 21:40:58 +0200 |
---|---|---|
committer | Rubén <rubrinbla@gmail.com> | 2017-10-02 22:01:38 +0200 |
commit | d193739ecc794c21ea2650bd8c43303ab0e5555d (patch) | |
tree | e0f83e8bcf2f6374e38ac82ff4910ec6d0818dcc /lib/compile-handler.js | |
parent | e8afb379a40f9952e51eff27943a77a37c5c51c9 (diff) | |
download | compiler-explorer-d193739ecc794c21ea2650bd8c43303ab0e5555d.tar.gz compiler-explorer-d193739ecc794c21ea2650bd8c43303ab0e5555d.zip |
Bring every file up-to-format-date
Diffstat (limited to 'lib/compile-handler.js')
-rw-r--r-- | lib/compile-handler.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/compile-handler.js b/lib/compile-handler.js index 48d84b4cc..2266e7409 100644 --- a/lib/compile-handler.js +++ b/lib/compile-handler.js @@ -37,6 +37,7 @@ var child_process = require('child_process'), temp.track(); var oneTimeInit = false; + function initialise(gccProps, compilerEnv) { if (oneTimeInit) return; oneTimeInit = true; @@ -165,6 +166,7 @@ function CompileHandler(gccProps, compilerProps) { })) .filter(_.identity) .value(); + function textify(array) { return _.pluck(array || [], 'text').join("\n"); } |