src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/ScriptObject.java

Print this page

        

*** 810,820 **** * @param deep Whether the search should look up proto chain. * @param start the object on which the lookup was originally initiated * * @return FindPropertyData or null if not found. */ ! FindProperty findProperty(final String key, final boolean deep, final ScriptObject start) { final PropertyMap selfMap = getMap(); final Property property = selfMap.findProperty(key); if (property != null) { --- 810,820 ---- * @param deep Whether the search should look up proto chain. * @param start the object on which the lookup was originally initiated * * @return FindPropertyData or null if not found. */ ! protected FindProperty findProperty(final String key, final boolean deep, final ScriptObject start) { final PropertyMap selfMap = getMap(); final Property property = selfMap.findProperty(key); if (property != null) {