Markdown formatting error

This commit is contained in:
Hackerpilot 2012-04-22 19:03:59 -07:00
parent 2ff81e8240
commit 4b6ef9809a
1 changed files with 154 additions and 154 deletions

308
README.md
View File

@ -31,213 +31,213 @@ Generates a JSON summary of the input file.
### Example ### Example
The given D code: The given D code:
module example; module example;
import std.stdio; import std.stdio;
interface Iface { interface Iface {
double interfaceMethod(); double interfaceMethod();
} }
class SomeClass(T) if (isSomeString!T) : IFace { class SomeClass(T) if (isSomeString!T) : IFace {
public: public:
this() {} this() {}
void doStuff(T); void doStuff(T);
override double interfaceMethod() {} override double interfaceMethod() {}
private: private:
T theTee; T theTee;
} }
int freeFunction(int x) { return x + x; } int freeFunction(int x) { return x + x; }
void main(string[] args) { void main(string[] args) {
} }
is transformed into the following JSON markup: is transformed into the following JSON markup:
{
"name" : "example",
"imports" : [
"std.stdio"
],
"interfaces" : [
{ {
"name" : "example", "name" : "Iface",
"imports" : [ "line" : 5,
"std.stdio" "protection" : "public",
"attributes" : [
], ],
"interfaces" : [ "constraint" : "",
"templateParameters" : [
],
"functions" : [
{ {
"name" : "Iface", "name" : "interfaceMethod",
"line" : 5, "line" : 6,
"protection" : "public", "protection" : "",
"attributes" : [ "attributes" : [
], ],
"constraint" : "", "constraint" : "",
"templateParameters" : [ "templateParameters" : [
], ],
"functions" : [ "parameters" : [
{
"name" : "interfaceMethod",
"line" : 6,
"protection" : "",
"attributes" : [
],
"constraint" : "",
"templateParameters" : [
],
"parameters" : [
],
"returnType" : "double"
}
], ],
"variables" : [ "returnType" : "double"
],
"baseClasses" : [
]
} }
], ],
"classes" : [ "variables" : [
],
"baseClasses" : [
]
}
],
"classes" : [
{
"name" : "SomeClass",
"line" : 9,
"protection" : "public",
"attributes" : [
],
"constraint" : "if (isSomeString!T)",
"templateParameters" : [
"T"
],
"functions" : [
{ {
"name" : "SomeClass", "name" : "this",
"line" : 9, "line" : 11,
"protection" : "public", "protection" : "",
"attributes" : [ "attributes" : [
], ],
"constraint" : "if (isSomeString!T)", "constraint" : "",
"templateParameters" : [ "templateParameters" : [
"T"
], ],
"functions" : [ "parameters" : [
{
"name" : "this",
"line" : 11,
"protection" : "",
"attributes" : [
],
"constraint" : "",
"templateParameters" : [
],
"parameters" : [
],
"returnType" : ""
},
{
"name" : "doStuff",
"line" : 12,
"protection" : "",
"attributes" : [
],
"constraint" : "",
"templateParameters" : [
],
"parameters" : [
{
"name" : "",
"line" : 0,
"protection" : "",
"attributes" : [
],
"type" : "T"
}
],
"returnType" : "void"
},
{
"name" : "interfaceMethod",
"line" : 13,
"protection" : "",
"attributes" : [
"override"
],
"constraint" : "",
"templateParameters" : [
],
"parameters" : [
],
"returnType" : "double"
}
], ],
"variables" : [ "returnType" : ""
},
{
"name" : "doStuff",
"line" : 12,
"protection" : "",
"attributes" : [
],
"constraint" : "",
"templateParameters" : [
],
"parameters" : [
{ {
"name" : "theTee", "name" : "",
"line" : 15, "line" : 0,
"protection" : "private", "protection" : "",
"attributes" : [ "attributes" : [
], ],
"type" : "T" "type" : "T"
} }
], ],
"baseClasses" : [ "returnType" : "void"
"IFace" },
] {
"name" : "interfaceMethod",
"line" : 13,
"protection" : "",
"attributes" : [
"override"
],
"constraint" : "",
"templateParameters" : [
],
"parameters" : [
],
"returnType" : "double"
} }
], ],
"structs" : [ "variables" : [
],
"structs" : [
],
"functions" : [
{ {
"name" : "freeFunction", "name" : "theTee",
"line" : 15,
"protection" : "private",
"attributes" : [
],
"type" : "T"
}
],
"baseClasses" : [
"IFace"
]
}
],
"structs" : [
],
"structs" : [
],
"functions" : [
{
"name" : "freeFunction",
"line" : 18,
"protection" : "",
"attributes" : [
],
"constraint" : "",
"templateParameters" : [
],
"parameters" : [
{
"name" : "x",
"line" : 18, "line" : 18,
"protection" : "", "protection" : "",
"attributes" : [ "attributes" : [
], ],
"constraint" : "", "type" : "int"
"templateParameters" : [ }
], ],
"parameters" : [ "returnType" : "int"
{ },
"name" : "x", {
"line" : 18, "name" : "main",
"protection" : "", "line" : 20,
"attributes" : [ "protection" : "",
], "attributes" : [
"type" : "int" ],
} "constraint" : "",
], "templateParameters" : [
"returnType" : "int" ],
}, "parameters" : [
{ {
"name" : "main", "name" : "args",
"line" : 20, "line" : 20,
"protection" : "", "protection" : "",
"attributes" : [ "attributes" : [
], ],
"constraint" : "", "type" : "string[]"
"templateParameters" : [
],
"parameters" : [
{
"name" : "args",
"line" : 20,
"protection" : "",
"attributes" : [
],
"type" : "string[]"
}
],
"returnType" : "void"
} }
], ],
"variables" : [ "returnType" : "void"
],
"enums" : [
]
} }
],
"variables" : [
],
"enums" : [
]
}
# Ctags output # Ctags output
Dscanner can create a tags file from the specified file. Output is formatted as Dscanner can create a tags file from the specified file. Output is formatted as
specified at http://ctags.sourceforge.net/FORMAT. The result of generating ctags specified at http://ctags.sourceforge.net/FORMAT. The result of generating ctags
on the same file used in the JSON example will produce this output: on the same file used in the JSON example will produce this output:
{!_TAG_FILE_FORMAT 2} {!_TAG_FILE_FORMAT 2}
{!_TAG_FILE_SORTED 1} {!_TAG_FILE_SORTED 1}
Iface tmp.d 3;" c inherits: Iface tmp.d 3;" c inherits:
SomeClass tmp.d 7;" c inherits:IFace SomeClass tmp.d 7;" c inherits:IFace
doStuff tmp.d 10;" f arity:1 struct:SomeClass doStuff tmp.d 10;" f arity:1 struct:SomeClass
freeFunction tmp.d 16;" f arity:1 freeFunction tmp.d 16;" f arity:1
interfaceMethod tmp.d 11;" f arity:0 struct:SomeClass interfaceMethod tmp.d 11;" f arity:0 struct:SomeClass
interfaceMethod tmp.d 4;" f arity:0 struct:Iface interfaceMethod tmp.d 4;" f arity:0 struct:Iface
main tmp.d 18;" f arity:1 main tmp.d 18;" f arity:1
theTee tmp.d 13;" m struct:SomeClass theTee tmp.d 13;" m struct:SomeClass
this tmp.d 9;" f arity:0 struct:SomeClass this tmp.d 9;" f arity:0 struct:SomeClass
# Line of Code count # Line of Code count
This option counts the logical lines of code in the given source files, not This option counts the logical lines of code in the given source files, not