(spec)
| 384 | } |
| 385 | |
| 386 | function isSimpleAnnotation(spec) { |
| 387 | if (!spec["!type"] || /^(fn\(|\[|\+)/.test(spec["!type"])) return false; |
| 388 | for (var prop in spec) |
| 389 | if (prop != "!type" && prop != "!doc" && prop != "!url" && prop != "!span" && prop != "!data") |
| 390 | return false; |
| 391 | return true; |
| 392 | } |
| 393 | |
| 394 | function passOne(base, spec, path) { |
| 395 | if (!base) { |