2323import org .htmlunit .corejs .javascript .ContextAction ;
2424import org .htmlunit .corejs .javascript .Function ;
2525import org .htmlunit .corejs .javascript .Scriptable ;
26- import org .htmlunit .corejs .javascript .ScriptableObject ;
2726import org .htmlunit .html .DomNode ;
2827import org .htmlunit .javascript .HtmlUnitContextFactory ;
29- import org .htmlunit .javascript .HtmlUnitScriptable ;
3028import org .htmlunit .javascript .JavaScriptEngine ;
3129import org .htmlunit .javascript .configuration .JsxClass ;
3230import org .htmlunit .javascript .configuration .JsxConstructor ;
@@ -90,7 +88,7 @@ public NodeList(final DomNode domNode, final List<DomNode> initialElements) {
9088 * Creates an instance.
9189 * @param parentScope the parent scope
9290 */
93- NodeList (final ScriptableObject parentScope ) {
91+ NodeList (final Scriptable parentScope ) {
9492 super ();
9593 setParentScope (parentScope );
9694 setPrototype (getPrototype (getClass ()));
@@ -104,7 +102,7 @@ public NodeList(final DomNode domNode, final List<DomNode> initialElements) {
104102 * @param elements the elements
105103 * @return an empty collection
106104 */
107- public static NodeList staticNodeList (final HtmlUnitScriptable parentScope , final List <DomNode > elements ) {
105+ public static NodeList staticNodeList (final Scriptable parentScope , final List <DomNode > elements ) {
108106 return new NodeList (parentScope ) {
109107 @ Override
110108 public List <DomNode > getElements () {
0 commit comments