mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
all: unify const names to snake_case
This commit is contained in:
@ -2000,7 +2000,7 @@ pub fn (mut re RE) match_base(in_txt byteptr, in_txt_len int ) (int,int) {
|
||||
continue
|
||||
}
|
||||
else if rep==0 && rep < re.prog[tmp_pc].rep_min {
|
||||
//println("ist_quant_ng ZERO UNDER THE MINIMUM g.i: $group_index")
|
||||
//println("ist_quant_ng c_zero UNDER THE MINIMUM g.i: $group_index")
|
||||
|
||||
if group_index > 0{
|
||||
group_index--
|
||||
@ -2071,7 +2071,7 @@ pub fn (mut re RE) match_base(in_txt byteptr, in_txt_len int ) (int,int) {
|
||||
|
||||
// zero quantifier * or ?
|
||||
if rep == 0 && re.prog[pc].rep_min == 0 {
|
||||
//println("ist_quant_n ZERO RANGE MIN")
|
||||
//println("ist_quant_n c_zero RANGE MIN")
|
||||
m_state = .ist_next // go to next ist
|
||||
continue
|
||||
}
|
||||
|
Reference in New Issue
Block a user