1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

compiler: remove old vh generator

This commit is contained in:
Alexander Medvednikov
2020-03-19 13:24:57 +01:00
parent 0f08a92302
commit dd96421a9f
2 changed files with 1 additions and 173 deletions

View File

@ -274,7 +274,7 @@ pub fn (v mut V) compile() {
vgen_parser.parse(.main)
// Generate .vh if we are building a module
if v.pref.build_mode == .build_module {
generate_vh(v.pref.path)
//generate_vh(v.pref.path)
}
// All definitions
mut def := strings.new_builder(10000) // Avoid unnecessary allocations