This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"namespaces" : { | |
"glow" : { | |
"namespaces" : { | |
"dom" : { | |
"classes" : { | |
"NodeList" : { | |
"constructor" : { | |
"methods" : { | |
"aStaticMethod" : { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/node | |
var fs = require('fs'); | |
var sys = require('sys'); | |
var schema = fs.readFileSync(process.argv[2], 'utf8'); | |
var json = fs.readFileSync(process.argv[3], 'utf8'); | |
schema = JSON.parse(schema); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"description" : "A schema describing API docs. Top-level object is the top level anonymous namespace", | |
"extends" : [ { "$ref" : "#.defs.namespace" } ], | |
"properties" : { | |
"typedefs" : { | |
"type" : "object", | |
"optional" : true, | |
"additionalProperties" : { "$ref" : "#.defs.typedef" } | |
} | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
Suite Run - div.test-suite-run (.not-started, li.running, li.successful, li.failed) | |
name - div.name | |
summary - div.summary | |
not-started/success/failure - div.status | |
number of... - dl.totals | |
tests ran - dt, dd.ran | |
successful tests - dt, dd.successful | |
failed tests - dt, dd.failed |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require.async('./b', function () {}); | |
require.async('./c', function () {}); |
NewerOlder