- 
    Bug 
- 
    Resolution: Fixed
- 
     P4 P4
- 
    8
- 
    None
- 
        b98
- 
        generic
- 
        generic
                    function func() { 'use strict' ; }
function func2() { 'use strict'; }
print(Debug.map(func) === Debug.map(func2)); // prints false rather than true
// If 'strict' clause is removed, we see that the functions share the map
function func2() { 'use strict'; }
print(Debug.map(func) === Debug.map(func2)); // prints false rather than true
// If 'strict' clause is removed, we see that the functions share the map
| 1. | Simplify ScriptObject.modifyOwnProperty |  | Resolved | Unassigned |