mirror of
https://github.com/mcanlas/6502-opcodes.git
synced 2025-04-04 05:30:25 +00:00
adt
This commit is contained in:
parent
b4733e54da
commit
67c77196f1
@ -0,0 +1,16 @@
|
||||
package com.htmlism.firepower.demo.asm
|
||||
|
||||
import com.htmlism.firepower.demo.str.Paragraph
|
||||
|
||||
sealed trait AsmBlock
|
||||
|
||||
case class CommentBlock(xs: List[String]) extends AsmBlock
|
||||
|
||||
object CommentBlock:
|
||||
def toParagraph(xs: AsmBlock): Paragraph =
|
||||
xs match
|
||||
case CommentBlock(ys) =>
|
||||
Paragraph(ys.map("; " + _))
|
||||
|
||||
def fromMultiline(s: String): CommentBlock =
|
||||
CommentBlock(s.split("\\n").toList)
|
@ -1,12 +0,0 @@
|
||||
package com.htmlism.firepower.demo.asm
|
||||
|
||||
import com.htmlism.firepower.demo.str.Paragraph
|
||||
|
||||
case class CommentBlock(xs: List[String])
|
||||
|
||||
object CommentBlock:
|
||||
def toParagraph(cb: CommentBlock): Paragraph =
|
||||
Paragraph(cb.xs.map("; " + _))
|
||||
|
||||
def fromMultiline(s: String): CommentBlock =
|
||||
CommentBlock(s.split("\\n").toList)
|
Loading…
x
Reference in New Issue
Block a user