Class: Fig::Deparser::V0
Overview
Handles serializing of statements in the v0 grammar.
Instance Method Summary
collapse
#archive, class_for_statements, #configuration, #deparse, determine_version_and_deparse, #include, #include_file, #override, #path, #resource, #set, #synthetic_raw_text
Constructor Details
#initialize(emit_as_input_or_to_be_published_values, indent_string = ' ' * 2, initial_indent_level = 0) ⇒ V0
Returns a new instance of V0.
12
13
14
15
16
17
18
19
20
21
22
23
|
# File 'lib/fig/deparser/v0.rb', line 12
def initialize(
emit_as_input_or_to_be_published_values,
indent_string = ' ' * 2,
initial_indent_level = 0
)
@emit_as_input_or_to_be_published_values =
emit_as_input_or_to_be_published_values
@indent_string = indent_string
@initial_indent_level = initial_indent_level
return
end
|
Instance Method Details
#command(statement) ⇒ Object
25
26
27
28
29
30
31
32
33
|
# File 'lib/fig/deparser/v0.rb', line 25
def command(statement)
add_indent
@text << %q<command ">
@text << statement.command.first.to_double_quotable_string
@text << %Q<"\n>
return
end
|
#grammar_description ⇒ Object
56
57
58
|
# File 'lib/fig/deparser/v0.rb', line 56
def grammar_description()
return 'v0'
end
|
#grammar_version(statement) ⇒ Object
35
36
37
38
39
40
41
42
|
# File 'lib/fig/deparser/v0.rb', line 35
def grammar_version(statement)
add_indent
@text << "# grammar v0\n\n"
return
end
|
#retrieve(statement) ⇒ Object
44
45
46
47
48
49
50
51
52
53
54
|
# File 'lib/fig/deparser/v0.rb', line 44
def retrieve(statement)
add_indent
@text << 'retrieve '
@text << statement.variable
@text << '->'
@text << statement.tokenized_path.to_double_quotable_string
@text << "\n"
return
end
|