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

Revert "parser: cache tokens (first step)"

This reverts commit 8992707fbb.
This commit is contained in:
Alexander Medvednikov
2019-09-26 06:05:18 +03:00
parent 8992707fbb
commit 0fcdd7db35
5 changed files with 34 additions and 88 deletions

View File

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