implements
is a Future Reserved Word which means it's a keyword, but currently doesn't have a meaning in the language.
The following words are used as keywords in proposed extensions and are therefore reserved to allow for the possibility of future adoption of those extensions.
The following tokens are also considered to be FutureReservedWords when they occur within strict mode code (see 10.1.1).
implements let private public yield
interface package protected static
This list is different in the latest ECMAScript Language Specification since let
, yield
, and static
have received a formal meaning since.
The current Reserved Word section:
enum is not currently used as a keyword in this specification. It is a future reserved word, set aside for use as a keyword in future language extensions.
Similarly, implements, interface, package, private, protected, and public are future reserved words in strict mode code.
I don't see how the implements
keyword would refer to anything other than inheritance which suggests to me that technical committee 39 (the body formally responsible for the ECMAScript specification) hasn't ruled out the possibility of adding isolation/inheritance.
The process for getting a feature added includes an input phase. IDL for ECMAScript is an example of input that might come to shape this feature.
This repository is intended for an investigation into using an Interface Description Language (IDL) in the ECMAScript standard. It is not currently at a stage in TC39.