// file : libbuild2/test/script/builtin.cli // copyright : Copyright (c) 2014-2019 Code Synthesis Ltd // license : MIT; see accompanying LICENSE file // Note that options in this file are undocumented because we generate neither // the usage printing code nor man pages. Instead, they are documented in the // Testscript Language Manual's builtin descriptions. // namespace build2 { namespace test { namespace script { // Pseudo-builtin options. // class set_options { bool --exact|-e; bool --newline|-n; bool --whitespace|-w; }; } } }