summaryrefslogtreecommitdiff
path: root/support/arara/source/src/main/kotlin/org/islandoftex/arara/ruleset/Directive.kt
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2020-04-04 03:02:28 +0000
committerNorbert Preining <norbert@preining.info>2020-04-04 03:02:28 +0000
commit4f71d4ff0d1e7ff4607b58eb7d030bd860e44f3a (patch)
treed4e56c2a7dc233a34c572829037ac8fb346f14bc /support/arara/source/src/main/kotlin/org/islandoftex/arara/ruleset/Directive.kt
parent6cacb7b2abf477262c442913f467f219649afb26 (diff)
CTAN sync 202004040302
Diffstat (limited to 'support/arara/source/src/main/kotlin/org/islandoftex/arara/ruleset/Directive.kt')
-rw-r--r--support/arara/source/src/main/kotlin/org/islandoftex/arara/ruleset/Directive.kt32
1 files changed, 0 insertions, 32 deletions
diff --git a/support/arara/source/src/main/kotlin/org/islandoftex/arara/ruleset/Directive.kt b/support/arara/source/src/main/kotlin/org/islandoftex/arara/ruleset/Directive.kt
deleted file mode 100644
index 33f8431744..0000000000
--- a/support/arara/source/src/main/kotlin/org/islandoftex/arara/ruleset/Directive.kt
+++ /dev/null
@@ -1,32 +0,0 @@
-// SPDX-License-Identifier: BSD-3-Clause
-package org.islandoftex.arara.ruleset
-
-/**
- * Implements the directive model.
- *
- * @author Island of TeX
- * @version 5.0
- * @since 4.0
- */
-data class Directive(
- /**
- * The directive identifier, it is resolved to the rule identifier
- * later on.
- */
- val identifier: String,
- /**
- * A map containing the parameters; they are validated later on in
- * order to ensure they are valid.
- */
- val parameters: Map<String, Any>,
- /**
- * A conditional containing the type and the expression to be evaluated
- * later on.
- */
- val conditional: Conditional,
- /**
- * A list contained all line numbers from the main file which built the
- * current directive.
- */
- val lineNumbers: List<Int>
-)