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

type name check fixes

This commit is contained in:
Alexander Medvednikov
2019-08-04 09:36:21 +02:00
parent 8bce5cb810
commit ee437de8d3
4 changed files with 34 additions and 12 deletions

View File

@@ -915,17 +915,6 @@ fn (p mut Parser) fn_call_args(f mut Fn) *Fn {
// p.gen(')')
}
fn contains_capital(s string) bool {
// for c in s {
for i := 0; i < s.len; i++ {
c := s[i]
if c >= `A` && c <= `Z` {
return true
}
}
return false
}
// "fn (int, string) int"
fn (f Fn) typ_str() string {
mut sb := strings.new_builder(50)