NodeLocation

public struct NodeLocation : Codable
extension NodeLocation: CustomStringConvertible
extension NodeLocation: Equatable

Describes the location of a node

  • url

    The url of the file the token is in

    Declaration

    Swift

    public let url: URL
  • The line in the file

    Declaration

    Swift

    public let line: Int
  • The utf8 column

    Declaration

    Swift

    public let utf8Column: Int

NodeLocation: Codable

  • Declaration

    Swift

    public var description: String { get }
  • Declaration

    Swift

    public static func == (lhs: NodeLocation, rhs: NodeLocation) -> Bool