We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7546d14 commit ce59fffCopy full SHA for ce59fff
vlib/v/scanner/scanner.v
@@ -554,7 +554,7 @@ fn (mut s Scanner) end_of_file() token.Token {
554
return s.new_eof_token()
555
}
556
557
-pub fn (mut s Scanner) scan_all_tokens_in_buffer() {
+fn (mut s Scanner) scan_all_tokens_in_buffer() {
558
mut timers := util.get_timers()
559
timers.measure_pause('PARSE')
560
util.timing_start('SCAN')
@@ -571,7 +571,7 @@ pub fn (mut s Scanner) scan_all_tokens_in_buffer() {
571
572
573
574
-pub fn (mut s Scanner) scan_remaining_text() {
+fn (mut s Scanner) scan_remaining_text() {
575
for {
576
t := s.text_scan()
577
if s.comments_mode == .skip_comments && t.kind == .comment {
0 commit comments