Static methods and non-static variables

Hello,

In the following code:

private var localVar:Object;

localVar = StaticClass.getObject();

is localVar still a non-static local var, or is it a reference to a static object in the StaticClass class?