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

module cache fixes; do not allow function names starting with _

This commit is contained in:
Alexander Medvednikov
2019-10-09 23:38:33 +03:00
parent 0796e1dd69
commit 2411b8d1e7
18 changed files with 95 additions and 42 deletions

View File

@ -34,7 +34,7 @@ pub fn _make(len, cap, elm_size int) array {
*/
pub fn _make(len, cap, elm_size int) array {
pub fn make(len, cap, elm_size int) array {
return array{}
}