blob: 9abe0123d39a36348067c694ed2faf465e95370b [file] [edit]
// Copyright (C) 2020 Rick Waldron. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
desc: Reassignment of function name is silently ignored in non-strict mode code.
template: expr-named
---*/
//- body
callCount++;
(() => {
BindingIdentifier = 1;
})();
return BindingIdentifier;