Class: Jade::Frontend::SemanticAnalysis::Error::MissingExposingClause
- Inherits:
-
Error
- Object
- Error
- Jade::Frontend::SemanticAnalysis::Error::MissingExposingClause
- Defined in:
- lib/jade/frontend/semantic_analysis/error/missing_exposing_clause.rb
Instance Attribute Summary
Attributes inherited from Error
Instance Method Summary collapse
-
#initialize(entry, span) ⇒ MissingExposingClause
constructor
A new instance of MissingExposingClause.
- #message ⇒ Object
Methods inherited from Error
#candidates, #label, #notes, #queried_name, #to_diagnostic
Constructor Details
#initialize(entry, span) ⇒ MissingExposingClause
Returns a new instance of MissingExposingClause.
6 7 8 |
# File 'lib/jade/frontend/semantic_analysis/error/missing_exposing_clause.rb', line 6 def initialize(entry, span) super(entry:, span:) end |
Instance Method Details
#message ⇒ Object
10 11 12 |
# File 'lib/jade/frontend/semantic_analysis/error/missing_exposing_clause.rb', line 10 def "This module is missing an exposing clause" end |