Feature/reduced verbosity
- Nov 09, 2020
-
-
Stéphane Del Pino authored
-
Stéphane Del Pino authored
-
Stéphane Del Pino authored
The two first ones return a string containing the AST the later one saves the AST to a file (its name is given as a string argument).
-
Stéphane Del Pino authored
It provides getPugsVersion() and getPugsBuildInfo() functions which return string
-
Stéphane Del Pino authored
-
Stéphane Del Pino authored
printLSOptions -> getLSOptions printLSAvailable -> getLSAvailable These new function do not print the result anymore but return a string. To display available or set options, one should now uses: ``` cout << getLSOptions() << "\n"; let available:string, available = getLSAvailable(); cout << available << "\n"; ```
-
Stéphane Del Pino authored
Number of grammar issues were previously output. This was useful for early language developments but always displaying information is irrelevant. Note grammar issues means that the grammar itself is buggy. It is not related to errors in user scripts.
-
Stéphane Del Pino authored
If these environment variables are not set they are positioned to recommended values for performance OMP_PROC_BIND=spread OMP_PLACES=treads These variables are untouched if set by the user.
-
Stéphane Del Pino authored
Now pugs version and build information are accessed through the '-v' or '--version' command line options
-
Stéphane Del Pino authored
These were useless and could eventually be problematic
-