mirror of
https://github.com/vlang/v.git
synced 2025-09-15 07:22:27 +03:00
fix http
This commit is contained in:
parent
dc161fb20f
commit
02131d1ae5
1 changed files with 2 additions and 1 deletions
|
@ -142,7 +142,8 @@ fn (p mut Parser) parse() {
|
|||
}
|
||||
p.fgenln('\n')
|
||||
p.builtin_pkg = p.pkg == 'builtin'
|
||||
p.can_chash = p.pkg == 'gg' || p.pkg == 'glm' || p.pkg == 'gl' || p.pkg == 'glfw' // TODO tmp remove
|
||||
p.can_chash = p.pkg == 'gg' || p.pkg == 'glm' || p.pkg == 'gl' ||
|
||||
p.pkg == 'http' || p.pkg == 'glfw' // TODO tmp remove
|
||||
// Import pass - the first and the smallest pass that only analyzes imports
|
||||
p.table.register_package(p.pkg)
|
||||
if p.run == RUN_IMPORTS {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue