DeclassificationNode

class DeclassificationNode(val expression: ExpressionNode, val fromLabel: LabelNode?, val toLabel: LabelNode, val sourceLocation: SourceLocation) : DowngradeNode

Revealing the result of an expression (reducing confidentiality).

Constructors

Link copied to clipboard
fun DeclassificationNode(expression: ExpressionNode, fromLabel: LabelNode?, toLabel: LabelNode, sourceLocation: SourceLocation)

Functions

Link copied to clipboard
override fun toDocument(): Document

Properties

Link copied to clipboard
override val comment: String?

Expressions cannot have associated comments.

Link copied to clipboard
open override val expression: ExpressionNode

Expression whose label is being downgraded.

Link copied to clipboard
open override val fromLabel: LabelNode?

The label expression must have before the downgrade.

Link copied to clipboard
open override val sourceLocation: SourceLocation
Link copied to clipboard
open override val toLabel: LabelNode

The label after the downgrade.