Is there any internal (as in memory-only) equivalent to running raku -c on a file to check the syntax? So far, there are two methods
- Running EVAL, but this actually runs the code. It's fast, but might cause some memory problems if evaluated structures are not garbage-collected
- Creating a temporal file and running perl6 -c over it, but as said above, this is safe but an order of magnitude slower.
I am looking for a safe (as in perl6 -c) and fast (as in EVAL) alternative. Any idea?
:compile-onlyflag toEVAL. Not sure yet if jnthn will allow it in, so it may very well be reverted.:check: see github.com/rakudo/rakudo/commit/5b3a8ce0ed:checkor similar has landed and does what you want, iwbni if you (or Liz) added a minimal answer ("See:checkcomment above" would be more than enough imo) and the answer was accepted. If it didn't, then iwbni you edited your answer to leave a record of how it didn't measure up. TIA.