mirror of
https://github.com/schollz/cowyo.git
synced 2023-08-10 21:13:00 +03:00
Vendoring
This commit is contained in:
1
vendor/github.com/sourcegraph/annotate/testdata/adjacent.txt
generated
vendored
Normal file
1
vendor/github.com/sourcegraph/annotate/testdata/adjacent.txt
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
aaabbb
|
||||
1
vendor/github.com/sourcegraph/annotate/testdata/adjacent.txt.html
generated
vendored
Executable file
1
vendor/github.com/sourcegraph/annotate/testdata/adjacent.txt.html
generated
vendored
Executable file
@@ -0,0 +1 @@
|
||||
<b>aaa</b><i>bbb</i>
|
||||
1
vendor/github.com/sourcegraph/annotate/testdata/hello_world.txt
generated
vendored
Normal file
1
vendor/github.com/sourcegraph/annotate/testdata/hello_world.txt
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
hello, world
|
||||
1
vendor/github.com/sourcegraph/annotate/testdata/hello_world.txt.html
generated
vendored
Executable file
1
vendor/github.com/sourcegraph/annotate/testdata/hello_world.txt.html
generated
vendored
Executable file
@@ -0,0 +1 @@
|
||||
<b>hello</b>, <i>world</i>
|
||||
32
vendor/github.com/sourcegraph/annotate/testdata/html.txt
generated
vendored
Normal file
32
vendor/github.com/sourcegraph/annotate/testdata/html.txt
generated
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
function Animal(name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
Animal.prototype.sayHello = function() {
|
||||
return 'Hello from ' + this.name;
|
||||
};
|
||||
|
||||
Animal.prototype.makeNoise = function() {
|
||||
return this.noise || '<chirp>';
|
||||
};
|
||||
|
||||
function Dog(name, breed) {
|
||||
this.name = name;
|
||||
this.breed = breed;
|
||||
this.noise = 'Woof!';
|
||||
}
|
||||
|
||||
Dog.prototype = new Animal();
|
||||
|
||||
Dog.prototype.sayExtendedHello = function() {
|
||||
return this.sayHello() + ', ' + this.breed;
|
||||
};
|
||||
|
||||
Dog.prototype.bark = function() {
|
||||
return this.noise;
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
Animal: Animal,
|
||||
Dog: Dog,
|
||||
};
|
||||
32
vendor/github.com/sourcegraph/annotate/testdata/html.txt.html
generated
vendored
Executable file
32
vendor/github.com/sourcegraph/annotate/testdata/html.txt.html
generated
vendored
Executable file
@@ -0,0 +1,32 @@
|
||||
function Animal(name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
Animal.prototype.sayHello = function() {
|
||||
return 'Hello from ' + this.name;
|
||||
};
|
||||
|
||||
Animal.prototype.makeNoise = function() {
|
||||
return this.noise || <1>'<chirp>';</1>
|
||||
};
|
||||
|
||||
function Dog(name, breed) {
|
||||
this.name = name;
|
||||
this.breed = breed;
|
||||
this.noise = 'Woof!';
|
||||
}
|
||||
|
||||
Dog.prototype = new Animal();
|
||||
|
||||
<WOOF>Dog</WOOF>.prototype.sayExtendedHello = function() {
|
||||
return this.sayHello() + ', ' + this.breed;
|
||||
};
|
||||
|
||||
Dog.prototype.bark = function() {
|
||||
return this.noise;
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
Animal: Animal,
|
||||
Dog: Dog,
|
||||
};
|
||||
1
vendor/github.com/sourcegraph/annotate/testdata/nested_0.txt
generated
vendored
Normal file
1
vendor/github.com/sourcegraph/annotate/testdata/nested_0.txt
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
abcd
|
||||
1
vendor/github.com/sourcegraph/annotate/testdata/nested_0.txt.html
generated
vendored
Executable file
1
vendor/github.com/sourcegraph/annotate/testdata/nested_0.txt.html
generated
vendored
Executable file
@@ -0,0 +1 @@
|
||||
<1>a<2>bc</2>d</1>
|
||||
1
vendor/github.com/sourcegraph/annotate/testdata/nested_2.txt
generated
vendored
Normal file
1
vendor/github.com/sourcegraph/annotate/testdata/nested_2.txt
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
aabbccdd
|
||||
1
vendor/github.com/sourcegraph/annotate/testdata/nested_2.txt.html
generated
vendored
Executable file
1
vendor/github.com/sourcegraph/annotate/testdata/nested_2.txt.html
generated
vendored
Executable file
@@ -0,0 +1 @@
|
||||
<1>aa</1><2>bb</2><3>cc</3>d<4>d</4>
|
||||
Reference in New Issue
Block a user