2019-07-29 18:21:36 +02:00
|
|
|
// Copyright (c) 2019 Alexander Medvednikov. All rights reserved.
|
|
|
|
// Use of this source code is governed by an MIT license
|
|
|
|
// that can be found in the LICENSE file.
|
|
|
|
|
2019-08-17 21:19:37 +02:00
|
|
|
module main
|
2019-07-29 18:21:36 +02:00
|
|
|
|
2019-08-17 21:19:37 +02:00
|
|
|
import strings
|
2019-07-29 18:21:36 +02:00
|
|
|
|
|
|
|
// fmt helpers
|
2019-08-07 08:19:27 +02:00
|
|
|
fn (scanner mut Scanner) fgen(s_ string) {
|
2019-08-17 21:19:37 +02:00
|
|
|
mut s := s_
|
2019-07-29 18:21:36 +02:00
|
|
|
if scanner.fmt_line_empty {
|
|
|
|
s = strings.repeat(`\t`, scanner.fmt_indent) + s
|
|
|
|
}
|
|
|
|
scanner.fmt_out.write(s)
|
|
|
|
scanner.fmt_line_empty = false
|
|
|
|
}
|
|
|
|
|
2019-08-07 08:19:27 +02:00
|
|
|
fn (scanner mut Scanner) fgenln(s_ string) {
|
2019-08-17 21:19:37 +02:00
|
|
|
mut s := s_
|
2019-07-29 18:21:36 +02:00
|
|
|
if scanner.fmt_line_empty {
|
|
|
|
s = strings.repeat(`\t`, scanner.fmt_indent) + s
|
|
|
|
}
|
|
|
|
scanner.fmt_out.writeln(s)
|
|
|
|
scanner.fmt_line_empty = true
|
|
|
|
}
|
|
|
|
|
|
|
|
fn (p mut Parser) fgen(s string) {
|
|
|
|
p.scanner.fgen(s)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn (p mut Parser) fspace() {
|
|
|
|
p.fgen(' ')
|
|
|
|
}
|
|
|
|
|
|
|
|
fn (p mut Parser) fgenln(s string) {
|
|
|
|
p.scanner.fgenln(s)
|
|
|
|
}
|
|
|
|
|
2019-09-27 03:00:48 +02:00
|
|
|
/*
|
2019-10-09 00:05:34 +02:00
|
|
|
fn (p mut Parser) peek() TokenKind {
|
2019-07-29 18:21:36 +02:00
|
|
|
for {
|
2019-08-04 11:00:56 +02:00
|
|
|
p.cgen.line = p.scanner.line_nr + 1
|
2019-07-29 18:21:36 +02:00
|
|
|
tok := p.scanner.peek()
|
|
|
|
if tok != .nl {
|
|
|
|
return tok
|
|
|
|
}
|
|
|
|
}
|
2019-08-08 09:49:56 +02:00
|
|
|
return .eof // TODO can never get here - v doesn't know that
|
2019-07-29 18:21:36 +02:00
|
|
|
}
|
2019-09-27 03:00:48 +02:00
|
|
|
*/
|
2019-07-29 18:21:36 +02:00
|
|
|
|
|
|
|
fn (p mut Parser) fmt_inc() {
|
|
|
|
p.scanner.fmt_indent++
|
|
|
|
}
|
|
|
|
|
|
|
|
fn (p mut Parser) fmt_dec() {
|
|
|
|
p.scanner.fmt_indent--
|
|
|
|
}
|
|
|
|
|