Write code like this
```
var a = 123;
```
Now go back and type a. above that line. It will give completions even though a is undefined at this point
```
a.
var a = 123;
```
We should be aware of where we are in the file\project when giving completions.
```
var a = 123;
```
Now go back and type a. above that line. It will give completions even though a is undefined at this point
```
a.
var a = 123;
```
We should be aware of where we are in the file\project when giving completions.