Type Alias ParameterFunctionNaming
ParameterFunctionNaming: { 
    import: "importModule"; 
    private.check: "registerPrivateProperty"; 
    private.get: "getPrivateProperty"; 
    private.has: "hasPrivateProperty"; 
    private.set: "setPrivateProperty"; 
    scope.discard: "discardVariable"; 
    scope.read: "readVariable"; 
    scope.typeof: "typeofVariable"; 
    scope.writeSloppy: "writeVariableSloppy"; 
    scope.writeStrict: "writeVariableStrict"; 
    super.call: "callSuperConstructor"; 
    super.get: "getSuperProperty"; 
    super.set: "setSuperProperty"; 
}