fix http
parent
dc161fb20f
commit
02131d1ae5
|
@ -142,7 +142,8 @@ fn (p mut Parser) parse() {
|
||||||
}
|
}
|
||||||
p.fgenln('\n')
|
p.fgenln('\n')
|
||||||
p.builtin_pkg = p.pkg == 'builtin'
|
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
|
// Import pass - the first and the smallest pass that only analyzes imports
|
||||||
p.table.register_package(p.pkg)
|
p.table.register_package(p.pkg)
|
||||||
if p.run == RUN_IMPORTS {
|
if p.run == RUN_IMPORTS {
|
||||||
|
|
Loading…
Reference in New Issue