mirror of
https://github.com/KarolS/millfork.git
synced 2025-07-16 06:24:08 +00:00
Allow for "file" array specifier inside another array
This commit is contained in:
@@ -193,7 +193,7 @@ abstract class MfParser[T](filename: String, input: String, currentDirectory: St
|
||||
|
||||
def asmParamDefinition: P[ParameterDeclaration]
|
||||
|
||||
def arrayListElement: P[ArrayContents] = arrayStringContents | arrayLoopContents | mfExpression(nonStatementLevel).map(e => LiteralContents(List(e)))
|
||||
def arrayListElement: P[ArrayContents] = arrayStringContents | arrayLoopContents | arrayFileContents | mfExpression(nonStatementLevel).map(e => LiteralContents(List(e)))
|
||||
|
||||
def arrayProcessedContents: P[ArrayContents] = for {
|
||||
_ <- "@" ~/ HWS
|
||||
|
Reference in New Issue
Block a user