mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
scanner: simplify and unify style
This commit is contained in:
parent
0f8b2399ee
commit
bc3d1eaf6e
@ -97,15 +97,9 @@ fn scan_res(tok TokenKind, lit string) ScanRes {
|
||||
|
||||
fn (s mut Scanner) ident_name() string {
|
||||
start := s.pos
|
||||
for {
|
||||
s.pos++
|
||||
for s.pos < s.text.len && (is_name_char(s.text[s.pos]) || s.text[s.pos].is_digit()) {
|
||||
s.pos++
|
||||
if s.pos >= s.text.len {
|
||||
break
|
||||
}
|
||||
c := s.text[s.pos]
|
||||
if !is_name_char(c) && !c.is_digit() {
|
||||
break
|
||||
}
|
||||
}
|
||||
name := s.text[start..s.pos]
|
||||
s.pos--
|
||||
@ -118,19 +112,18 @@ const(
|
||||
|
||||
fn filter_num_sep(txt byteptr, start int, end int) string {
|
||||
unsafe {
|
||||
mut b := malloc(end-start + 1) // add a byte for the endstring 0
|
||||
mut i := start
|
||||
mut i1 := 0
|
||||
for i < end {
|
||||
if txt[i] != num_sep && txt[i] != `o` {
|
||||
b[i1]=txt[i]
|
||||
i1++
|
||||
mut b := malloc(end-start + 1) // add a byte for the endstring 0
|
||||
mut i := start
|
||||
mut i1 := 0
|
||||
for i < end {
|
||||
if txt[i] != num_sep && txt[i] != `o` {
|
||||
b[i1]=txt[i]
|
||||
i1++
|
||||
}
|
||||
i++
|
||||
}
|
||||
i++
|
||||
}
|
||||
b[i1]=0 // C string compatibility
|
||||
return string{str:b
|
||||
len:i1}
|
||||
b[i1]=0 // C string compatibility
|
||||
return string{str:b len:i1}
|
||||
}
|
||||
}
|
||||
|
||||
@ -139,10 +132,7 @@ fn (s mut Scanner) ident_bin_number() string {
|
||||
mut first_wrong_digit := `\0`
|
||||
start_pos := s.pos
|
||||
s.pos += 2 // skip '0b'
|
||||
for {
|
||||
if s.pos >= s.text.len {
|
||||
break
|
||||
}
|
||||
for s.pos < s.text.len {
|
||||
c := s.text[s.pos]
|
||||
if !c.is_bin_digit() && c != num_sep {
|
||||
if (!c.is_digit() && !c.is_letter()) || s.inside_string {
|
||||
@ -171,10 +161,7 @@ fn (s mut Scanner) ident_hex_number() string {
|
||||
mut first_wrong_digit := `\0`
|
||||
start_pos := s.pos
|
||||
s.pos += 2 // skip '0x'
|
||||
for {
|
||||
if s.pos >= s.text.len {
|
||||
break
|
||||
}
|
||||
for s.pos < s.text.len {
|
||||
c := s.text[s.pos]
|
||||
if !c.is_hex_digit() && c != num_sep {
|
||||
if !c.is_letter() || s.inside_string {
|
||||
@ -203,10 +190,7 @@ fn (s mut Scanner) ident_oct_number() string {
|
||||
mut first_wrong_digit := `\0`
|
||||
start_pos := s.pos
|
||||
s.pos += 2 // skip '0o'
|
||||
for {
|
||||
if s.pos >= s.text.len {
|
||||
break
|
||||
}
|
||||
for s.pos < s.text.len {
|
||||
c := s.text[s.pos]
|
||||
if !c.is_oct_digit() && c != num_sep {
|
||||
if (!c.is_digit() && !c.is_letter()) || s.inside_string {
|
||||
@ -236,13 +220,14 @@ fn (s mut Scanner) ident_dec_number() string {
|
||||
start_pos := s.pos
|
||||
// scan integer part
|
||||
for s.pos < s.text.len {
|
||||
if !s.text[s.pos].is_digit() && s.text[s.pos] != num_sep {
|
||||
if !s.text[s.pos].is_letter() || s.text[s.pos] in [`e`, `E`] || s.inside_string {
|
||||
c := s.text[s.pos]
|
||||
if !c.is_digit() && c != num_sep {
|
||||
if !c.is_letter() || c in [`e`, `E`] || s.inside_string {
|
||||
break
|
||||
}
|
||||
else if !has_wrong_digit {
|
||||
has_wrong_digit = true
|
||||
first_wrong_digit = s.text[s.pos]
|
||||
first_wrong_digit = c
|
||||
}
|
||||
}
|
||||
s.pos++
|
||||
@ -258,13 +243,14 @@ fn (s mut Scanner) ident_dec_number() string {
|
||||
if s.pos < s.text.len && s.text[s.pos] == `.` {
|
||||
s.pos++
|
||||
for s.pos < s.text.len {
|
||||
if !s.text[s.pos].is_digit() {
|
||||
if !s.text[s.pos].is_letter() || s.text[s.pos] in [`e`, `E`] || s.inside_string {
|
||||
c := s.text[s.pos]
|
||||
if !c.is_digit() {
|
||||
if !c.is_letter() || c in [`e`, `E`] || s.inside_string {
|
||||
break
|
||||
}
|
||||
else if !has_wrong_digit {
|
||||
has_wrong_digit = true
|
||||
first_wrong_digit = s.text[s.pos]
|
||||
first_wrong_digit = c
|
||||
}
|
||||
}
|
||||
s.pos++
|
||||
@ -279,13 +265,14 @@ fn (s mut Scanner) ident_dec_number() string {
|
||||
s.pos++
|
||||
}
|
||||
for s.pos < s.text.len {
|
||||
if !s.text[s.pos].is_digit() {
|
||||
if !s.text[s.pos].is_letter() || s.inside_string {
|
||||
c := s.text[s.pos]
|
||||
if !c.is_digit() {
|
||||
if !c.is_letter() || s.inside_string {
|
||||
break
|
||||
}
|
||||
else if !has_wrong_digit {
|
||||
has_wrong_digit = true
|
||||
first_wrong_digit = s.text[s.pos]
|
||||
first_wrong_digit = c
|
||||
}
|
||||
}
|
||||
s.pos++
|
||||
|
@ -91,15 +91,9 @@ fn (s &Scanner) scan_res(tok_kind token.Kind, lit string) token.Token {
|
||||
|
||||
fn (s mut Scanner) ident_name() string {
|
||||
start := s.pos
|
||||
for {
|
||||
s.pos++
|
||||
for s.pos < s.text.len && (is_name_char(s.text[s.pos]) || s.text[s.pos].is_digit()) {
|
||||
s.pos++
|
||||
if s.pos >= s.text.len {
|
||||
break
|
||||
}
|
||||
c := s.text[s.pos]
|
||||
if !is_name_char(c) && !c.is_digit() {
|
||||
break
|
||||
}
|
||||
}
|
||||
name := s.text[start..s.pos]
|
||||
s.pos--
|
||||
@ -111,7 +105,7 @@ const (
|
||||
)
|
||||
|
||||
fn filter_num_sep(txt byteptr, start int, end int) string {
|
||||
unsafe{
|
||||
unsafe {
|
||||
mut b := malloc(end - start + 1) // add a byte for the endstring 0
|
||||
mut i := start
|
||||
mut i1 := 0
|
||||
@ -135,10 +129,7 @@ fn (s mut Scanner) ident_bin_number() string {
|
||||
mut first_wrong_digit := `\0`
|
||||
start_pos := s.pos
|
||||
s.pos += 2 // skip '0b'
|
||||
for {
|
||||
if s.pos >= s.text.len {
|
||||
break
|
||||
}
|
||||
for s.pos < s.text.len {
|
||||
c := s.text[s.pos]
|
||||
if !c.is_bin_digit() && c != num_sep {
|
||||
if (!c.is_digit() && !c.is_letter()) || s.inside_string {
|
||||
@ -167,10 +158,7 @@ fn (s mut Scanner) ident_hex_number() string {
|
||||
mut first_wrong_digit := `\0`
|
||||
start_pos := s.pos
|
||||
s.pos += 2 // skip '0x'
|
||||
for {
|
||||
if s.pos >= s.text.len {
|
||||
break
|
||||
}
|
||||
for s.pos < s.text.len {
|
||||
c := s.text[s.pos]
|
||||
if !c.is_hex_digit() && c != num_sep {
|
||||
if !c.is_letter() || s.inside_string {
|
||||
@ -199,10 +187,7 @@ fn (s mut Scanner) ident_oct_number() string {
|
||||
mut first_wrong_digit := `\0`
|
||||
start_pos := s.pos
|
||||
s.pos += 2 // skip '0o'
|
||||
for {
|
||||
if s.pos >= s.text.len {
|
||||
break
|
||||
}
|
||||
for s.pos < s.text.len {
|
||||
c := s.text[s.pos]
|
||||
if !c.is_oct_digit() && c != num_sep {
|
||||
if (!c.is_digit() && !c.is_letter()) || s.inside_string {
|
||||
@ -232,13 +217,14 @@ fn (s mut Scanner) ident_dec_number() string {
|
||||
start_pos := s.pos
|
||||
// scan integer part
|
||||
for s.pos < s.text.len {
|
||||
if !s.text[s.pos].is_digit() && s.text[s.pos] != num_sep {
|
||||
if !s.text[s.pos].is_letter() || s.text[s.pos] in [`e`, `E`] || s.inside_string {
|
||||
c := s.text[s.pos]
|
||||
if !c.is_digit() && c != num_sep {
|
||||
if !c.is_letter() || c in [`e`, `E`] || s.inside_string {
|
||||
break
|
||||
}
|
||||
else if !has_wrong_digit {
|
||||
has_wrong_digit = true
|
||||
first_wrong_digit = s.text[s.pos]
|
||||
first_wrong_digit = c
|
||||
}
|
||||
}
|
||||
s.pos++
|
||||
@ -254,13 +240,14 @@ fn (s mut Scanner) ident_dec_number() string {
|
||||
if s.pos < s.text.len && s.text[s.pos] == `.` {
|
||||
s.pos++
|
||||
for s.pos < s.text.len {
|
||||
if !s.text[s.pos].is_digit() {
|
||||
if !s.text[s.pos].is_letter() || s.text[s.pos] in [`e`, `E`] || s.inside_string {
|
||||
c := s.text[s.pos]
|
||||
if !c.is_digit() {
|
||||
if !c.is_letter() || c in [`e`, `E`] || s.inside_string {
|
||||
break
|
||||
}
|
||||
else if !has_wrong_digit {
|
||||
has_wrong_digit = true
|
||||
first_wrong_digit = s.text[s.pos]
|
||||
first_wrong_digit = c
|
||||
}
|
||||
}
|
||||
s.pos++
|
||||
@ -275,13 +262,14 @@ fn (s mut Scanner) ident_dec_number() string {
|
||||
s.pos++
|
||||
}
|
||||
for s.pos < s.text.len {
|
||||
if !s.text[s.pos].is_digit() {
|
||||
if !s.text[s.pos].is_letter() || s.inside_string {
|
||||
c := s.text[s.pos]
|
||||
if !c.is_digit() {
|
||||
if !c.is_letter() || s.inside_string {
|
||||
break
|
||||
}
|
||||
else if !has_wrong_digit {
|
||||
has_wrong_digit = true
|
||||
first_wrong_digit = s.text[s.pos]
|
||||
first_wrong_digit = c
|
||||
}
|
||||
}
|
||||
s.pos++
|
||||
|
Loading…
Reference in New Issue
Block a user