mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
11 lines
137 B
V
11 lines
137 B
V
module scanner
|
|
|
|
import v.token
|
|
|
|
pub struct Warning {
|
|
message string
|
|
file_path string
|
|
pos token.Position
|
|
reporter Reporter
|
|
}
|