44 <tr> |
44 <tr> |
45 <td><a href="#jsonSyntaxCheck">jsonSyntaxCheck</a></td> |
45 <td><a href="#jsonSyntaxCheck">jsonSyntaxCheck</a></td> |
46 <td>Function to check a JSON source file for syntax errors.</td> |
46 <td>Function to check a JSON source file for syntax errors.</td> |
47 </tr> |
47 </tr> |
48 <tr> |
48 <tr> |
49 <td><a href="#normalizeCode">normalizeCode</a></td> |
|
50 <td>Function to normalize the given code.</td> |
|
51 </tr> |
|
52 <tr> |
|
53 <td><a href="#workerTask">workerTask</a></td> |
49 <td><a href="#workerTask">workerTask</a></td> |
54 <td>Module function acting as the parallel worker for the syntax check.</td> |
50 <td>Module function acting as the parallel worker for the syntax check.</td> |
55 </tr> |
51 </tr> |
56 </table> |
52 </table> |
57 <hr /> |
53 <hr /> |
203 </dd> |
199 </dd> |
204 </dl> |
200 </dl> |
205 <div align="right"><a href="#top">Up</a></div> |
201 <div align="right"><a href="#top">Up</a></div> |
206 <hr /> |
202 <hr /> |
207 <hr /> |
203 <hr /> |
208 <a NAME="normalizeCode" ID="normalizeCode"></a> |
|
209 <h2>normalizeCode</h2> |
|
210 <b>normalizeCode</b>(<i>codestring</i>) |
|
211 |
|
212 <p> |
|
213 Function to normalize the given code. |
|
214 </p> |
|
215 <dl> |
|
216 |
|
217 <dt><i>codestring</i> (str)</dt> |
|
218 <dd> |
|
219 code to be normalized |
|
220 </dd> |
|
221 </dl> |
|
222 <dl> |
|
223 <dt>Return:</dt> |
|
224 <dd> |
|
225 normalized code |
|
226 </dd> |
|
227 </dl> |
|
228 <dl> |
|
229 <dt>Return Type:</dt> |
|
230 <dd> |
|
231 str |
|
232 </dd> |
|
233 </dl> |
|
234 <div align="right"><a href="#top">Up</a></div> |
|
235 <hr /> |
|
236 <hr /> |
|
237 <a NAME="workerTask" ID="workerTask"></a> |
204 <a NAME="workerTask" ID="workerTask"></a> |
238 <h2>workerTask</h2> |
205 <h2>workerTask</h2> |
239 <b>workerTask</b>(<i>inputQueue, outputQueue</i>) |
206 <b>workerTask</b>(<i>inputQueue, outputQueue</i>) |
240 |
207 |
241 <p> |
208 <p> |