Allow variables without initializers.

This commit is contained in:
Bob Nystrom
2013-12-22 18:47:58 -08:00
parent 034fec6eaa
commit 3c8b4c009f
3 changed files with 15 additions and 4 deletions

View File

@ -0,0 +1,2 @@
var a
IO.write(a) // expect: null

View File

@ -0,0 +1,4 @@
{
var a
IO.write(a) // expect: null
}