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

fix duplicate #define generation

This commit is contained in:
BigBlack 2019-11-14 04:35:14 +08:00 committed by Alexander Medvednikov
parent 861f2d4bc0
commit 72249ce889

View File

@ -230,8 +230,10 @@ fn (p mut Parser) chash() {
}
else if hash.contains('define') {
// Move defines on top
if p.first_pass() {
p.cgen.includes << '#$hash'
}
}
// Don't parse a non-JS V file (`#-js` flag)
else if hash == '-js' {
$if js {