Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -451,6 +451,7 @@ object SILDebugAttribute {
case object let extends SILDebugAttribute
case object variable extends SILDebugAttribute
case object _implicit extends SILDebugAttribute
case class tpe(tpe: SILType) extends SILDebugAttribute
}

class SILDebugInfoExpr(val operand: SILDiExprOperand, val otherOperands: Option[ArrayBuffer[SILDiExprOperand]])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2040,6 +2040,7 @@ class SILParser extends SILPrinter {
if(skip("let")) return Some(SILDebugAttribute.let)
if(skip("var")) return Some(SILDebugAttribute.variable)
if(skip("implicit")) return Some(SILDebugAttribute.variable)
if(skip("type")) return Some(SILDebugAttribute.tpe(parseType()))
this.cursor = c
None
}
Expand Down
Loading