In The Syntactic Grammar it says that
When a stream of code points is to be parsed as an ECMAScript Script or Module, it is first converted to a stream of input elements by repeated application of the lexical grammar;
However, in Static Semantics: ParseText it says:
The abstract operation ParseText takes arguments sourceText (a sequence of Unicode code points) and goalSymbol (a nonterminal in one of the ECMAScript grammars). It performs the following steps when called:
The algorithm of Static Semantics: ParseText doesn't mention a step where we applying the Lexical Grammar that is turning a sequence of Unicode code points into an input elements.
So from my understanding, it seems like that algorithm skips the Lexical Grammar phase, and just constructs a parse tree from the Unicode code points.
So it basically contradicts The Syntactic Grammar statement I've attached above.
Because according to the Syntactic Grammar we construct a parse tree from input elements that we got from the Lexical Grammar and not from Unicode code points.
Is it a mistake or maybe I've misunderstood something?