Home | History | Annotate | Download | only in json_schema_compiler

Lines Matching refs:Substitute

17   def Append(self, line='', substitute=True, indent_level=None):
21 substitute: indicated whether this line should be affected by
22 code.Substitute().
27 substitute=substitute))
49 if line.substitute:
55 self.Append(line.value, line.substitute)
94 Unaffected by code.Substitute().
105 self.Append(comment_prefix + line, substitute=False)
106 self.Append(comment_prefix + comment, substitute=False)
109 def Substitute(self, d):
121 if self._code[i].substitute:
128 self._code[i].substitute = False
139 def __init__(self, value, substitute=True):
141 self.substitute = substitute