1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

parser: cache tokens (first step)

This commit is contained in:
Alexander Medvednikov
2019-09-26 03:34:37 +03:00
parent 04e4018228
commit 8992707fbb
5 changed files with 88 additions and 34 deletions

View File

@ -27,7 +27,7 @@ enum BuildMode {
}
const (
SupportedPlatforms = ['windows', 'mac', 'linux', 'freebsd', 'openbsd',
supported_platforms = ['windows', 'mac', 'linux', 'freebsd', 'openbsd',
'netbsd', 'dragonfly', 'msvc', 'android', 'js']
ModPath = os.home_dir() + '/.vmodules/'
)