After the first pass-through and token generation, we need to evaluate for each Token its runtime value.
e.g.
Token{T: T.NumericLiteral, Lexeme: "0xAB"}
Converted to
Token{T: T.NumericLiteral, Lexeme: "0xAB", Value: 171}
https://262.ecma-international.org/#sec-static-semantics-mv
After the first pass-through and token generation, we need to evaluate for each
Tokenits runtime value.e.g.
Converted to
https://262.ecma-international.org/#sec-static-semantics-mv