function ResolveIdentifier(Identifier){
var env = global.executionContextStack[global.executionContextStack.length-1]; // get the current execution context
var strict = env.strict; // is the current code running in strict mode?
return GetIdentifierReference(env, Identifier, strict);
}