I’ve made it through the reserved words category just fine, and now that I’m implementing parsing for some reason my code is failing the reserved words tests in this stage. Is FUN a reserved word that wasn’t initially covered? I don’t recall seeing it on the list of reserved words we had to implement for that stage. If it isn’t a reserved word, I think that this expected output is incorrect.
Nice catch - looks like our tests for the reserved words stage weren’t exhaustive. We were randomly picking a subset from the full list. We’ve now change this to include one test case that contains all the reserved words:
Thanks for highlighting this!
This topic was automatically closed 5 days after the last reply. New replies are no longer allowed.