Class: Steep::Project::NullListener
- Inherits:
-
Object
- Object
- Steep::Project::NullListener
show all
- Defined in:
- lib/steep/project/listener.rb
Instance Method Summary
collapse
Instance Method Details
#check(project:) ⇒ Object
12
13
14
|
# File 'lib/steep/project/listener.rb', line 12
def check(project:)
yield
end
|
#clear_project(project:) ⇒ Object
24
25
26
|
# File 'lib/steep/project/listener.rb', line 24
def clear_project(project:)
yield
end
|
#load_signature(project:) ⇒ Object
28
29
30
|
# File 'lib/steep/project/listener.rb', line 28
def load_signature(project:)
yield
end
|
#parse_signature(project:, file:) ⇒ Object
4
5
6
|
# File 'lib/steep/project/listener.rb', line 4
def parse_signature(project:, file:)
yield
end
|
#parse_source(project:, file:) ⇒ Object
8
9
10
|
# File 'lib/steep/project/listener.rb', line 8
def parse_source(project:, file:)
yield
end
|
#type_check_source(project:, file:) ⇒ Object
20
21
22
|
# File 'lib/steep/project/listener.rb', line 20
def type_check_source(project:, file:)
yield
end
|
#validate_signature(project:) ⇒ Object
16
17
18
|
# File 'lib/steep/project/listener.rb', line 16
def validate_signature(project:)
yield
end
|