OLD | NEW |
1 #library("dump"); | 1 #library("postProcess"); |
2 | 2 |
3 #import("../../../frog/lib/node/node.dart"); | 3 #import("../../../frog/lib/node/node.dart"); |
4 #import('../../../frog/lib/node/fs.dart'); | 4 #import('../../../frog/lib/node/fs.dart'); |
5 #import("dart:json"); | 5 #import("dart:json"); |
6 | 6 |
7 Map database; | 7 Map database; |
8 Map allProps; | 8 Map allProps; |
9 Set matchedTypes; | 9 Set matchedTypes; |
10 | 10 |
11 String orEmpty(String str) { | 11 String orEmpty(String str) { |
(...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
459 </tr> | 459 </tr> |
460 $sbObsolete | 460 $sbObsolete |
461 </tbody> | 461 </tbody> |
462 </table> | 462 </table> |
463 </body> | 463 </body> |
464 </html> | 464 </html> |
465 """); | 465 """); |
466 | 466 |
467 fs.writeFileSync("output/database.filtered.json", JSON.stringify(filteredDb)); | 467 fs.writeFileSync("output/database.filtered.json", JSON.stringify(filteredDb)); |
468 } | 468 } |
OLD | NEW |