mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
cgen: error if ForInStmt is not handled (#6131)
This commit is contained in:
@ -3,7 +3,6 @@
|
||||
// that can be found in the LICENSE file.
|
||||
module builtin
|
||||
|
||||
import strings
|
||||
//import hash.wyhash as hash
|
||||
import hash
|
||||
|
||||
@ -556,6 +555,7 @@ pub fn (m &map) free() {
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
pub fn (m map_string) str() string {
|
||||
if m.len == 0 {
|
||||
return '{}'
|
||||
@ -568,3 +568,4 @@ pub fn (m map_string) str() string {
|
||||
sb.writeln('}')
|
||||
return sb.str()
|
||||
}
|
||||
*/
|
||||
|
Reference in New Issue
Block a user