SourceMapError
Swift
public enum SourceMapError: Error, CustomStringConvertible
Error conditions detected by the module.
Topics
Cases
case invalidFormat(Int)
case invalidFormat(Int)
Source map decoding failed because the format
field’s value is invalid.
Declaration
Swift
case invalidFormat(Int)
case inconsistentSources(sourcesCount: Int, sourcesContentCount: Int)
case inconsistentSources(sourcesCount: Int, sourcesContentCount: Int)
case invalidBase64Character(Character)
case invalidBase64Character(Character)
Source map decoding failed because of an invalid character in the mappings
field.
Declaration
Swift
case invalidBase64Character(Character)
case invalidVLQStringUnterminated(vlq: String, soFar: [Int32])
case invalidVLQStringUnterminated(vlq: String, soFar: [Int32])
case invalidVLQStringLength([Int32])
case invalidVLQStringLength([Int32])
Source map decoding failed because a VLQ sequence has the wrong number of entries.
Declaration
Swift
case invalidVLQStringLength([Int32])
case invalidSource(Int, count: Int)
case invalidSource(Int, count: Int)
case invalidName(Int, count: Int)
case invalidName(Int, count: Int)
Properties
var description: String
var description: String
A short human-readable description of the error.
Declaration
Swift
public var description: String { get }