Sha256: 53a11e3266a0596bca18d31a6d228eebfaae9e0345be344e3e2bd751848c129d
Contents?: true
Size: 559 Bytes
Versions: 111
Compression:
Stored size: 559 Bytes
Contents
require_relative 'semantics_result' module BELParser module Language module Semantics # SemanticsWarning defines a {SemanticsResult} that should be regarded as # a warning with the expression. class SemanticsWarning < SemanticsResult def initialize(expression_node, specification) super(expression_node, specification) end def success? false end def failure? true end def to_s "Warning: #{msg}" end end end end end
Version data entries
111 entries across 111 versions & 1 rubygems