1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-08-13 19:52:52 +02:00

Missed renaming some identifiers

This commit is contained in:
David Landry
2018-10-05 18:30:03 -04:00
parent 86083df180
commit a7ecc90973

View File

@@ -43,8 +43,8 @@ func GetIn(from core.Value, byPath []core.Value) (core.Value, error) {
result = arr.Get(segment.(Int))
break
case core.HtmlElementType, core.HtmlDocumentType:
el := result.(HtmlNode)
case core.HTMLElementType, core.HTMLDocumentType:
el := result.(HTMLNode)
if segmentType == core.IntType {
result = el.GetChildNode(segment.(Int))
@@ -69,8 +69,8 @@ func GetIn(from core.Value, byPath []core.Value) (core.Value, error) {
case "length":
result = el.Length()
case "url":
if result.Type() == core.HtmlDocumentType {
doc, ok := result.(HtmlDocument)
if result.Type() == core.HTMLDocumentType {
doc, ok := result.(HTMLDocument)
if ok {
result = doc.Url()
@@ -92,8 +92,8 @@ func GetIn(from core.Value, byPath []core.Value) (core.Value, error) {
from.Type(),
core.ArrayType,
core.ObjectType,
core.HtmlDocumentType,
core.HtmlElementType,
core.HTMLDocumentType,
core.HTMLElementType,
)
}
}