1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/scanner/warning.v
2020-04-13 01:56:01 +02:00

11 lines
137 B
V

module scanner
import v.token
pub struct Warning {
message string
file_path string
pos token.Position
reporter Reporter
}