MCPcopy Create free account
hub / github.com/adamritter/fastgron / parseJSONString

Method parseJSONString

src/parse_path.cpp:113–126  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

111 }
112
113 string parseJSONString()
114 {
115 string s;
116 while (index_ < input_.size())
117 {
118 if (match('"'))
119 {
120 break;
121 }
122 match('\\'); // Ignore escape
123 s += input_[index_++];
124 }
125 return s;
126 }
127
128 ValueAccessor parseValueAccessor()
129 {

Callers

nothing calls this directly

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected