github-linguist 3.1.5 → 3.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/linguist/generated.rb +9 -0
- data/lib/linguist/heuristics.rb +4 -1
- data/lib/linguist/language.rb +5 -5
- data/lib/linguist/languages.yml +26 -2
- data/lib/linguist/lazy_blob.rb +34 -0
- data/lib/linguist/repository.rb +16 -4
- data/lib/linguist/samples.json +843 -65
- data/lib/linguist/samples.rb +5 -3
- data/lib/linguist/vendor.yml +7 -0
- data/lib/linguist/version.rb +1 -1
- metadata +10 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 48454a64d8649b5a804aea5b6c3586c78e7c5fd5
|
4
|
+
data.tar.gz: b0e7bd7939035857f1d4dd88cccb35f52bf001b6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0aacfee60a671fec51a9fb237670b20fdbe13df523f5f65993f5eb9861d3770899afab863eec2ab58dd4a1d9530063280962c97f921c0fab8830a75a85fa24d9
|
7
|
+
data.tar.gz: 76a4869a8288a452b1214a1a1975d5e275f57613732f715c2924e9bad0bf0e288eadbf07898369b77ff31f96aa6b9b3a0dce956f29c452fca78507636584fad2
|
data/lib/linguist/generated.rb
CHANGED
@@ -63,6 +63,7 @@ module Linguist
|
|
63
63
|
generated_jni_header? ||
|
64
64
|
composer_lock? ||
|
65
65
|
node_modules? ||
|
66
|
+
godeps? ||
|
66
67
|
vcr_cassette? ||
|
67
68
|
generated_by_zephir?
|
68
69
|
end
|
@@ -231,6 +232,14 @@ module Linguist
|
|
231
232
|
!!name.match(/node_modules\//)
|
232
233
|
end
|
233
234
|
|
235
|
+
# Internal: Is the blob part of Godeps/,
|
236
|
+
# which are not meant for humans in pull requests.
|
237
|
+
#
|
238
|
+
# Returns true or false.
|
239
|
+
def godeps?
|
240
|
+
!!name.match(/Godeps\//)
|
241
|
+
end
|
242
|
+
|
234
243
|
# Internal: Is the blob a generated php composer lock file?
|
235
244
|
#
|
236
245
|
# Returns true or false.
|
data/lib/linguist/heuristics.rb
CHANGED
@@ -19,11 +19,14 @@ module Linguist
|
|
19
19
|
if languages.all? { |l| ["ECL", "Prolog"].include?(l) }
|
20
20
|
result = disambiguate_ecl(data, languages)
|
21
21
|
end
|
22
|
+
if languages.all? { |l| ["Common Lisp", "OpenCL"].include?(l) }
|
23
|
+
result = disambiguate_cl(data, languages)
|
24
|
+
end
|
22
25
|
return result
|
23
26
|
end
|
24
27
|
end
|
25
28
|
|
26
|
-
# .h extensions are
|
29
|
+
# .h extensions are ambiguous between C, C++, and Objective-C.
|
27
30
|
# We want to shortcut look for Objective-C _and_ now C++ too!
|
28
31
|
#
|
29
32
|
# Returns an array of Languages or []
|
data/lib/linguist/language.rb
CHANGED
@@ -135,8 +135,8 @@ module Linguist
|
|
135
135
|
# No shebang. Still more work to do. Try to find it with our heuristics.
|
136
136
|
elsif (determined = Heuristics.find_by_heuristics(data, possible_language_names)) && !determined.empty?
|
137
137
|
determined.first
|
138
|
-
# Lastly, fall back to the
|
139
|
-
elsif classified = Classifier.classify(Samples
|
138
|
+
# Lastly, fall back to the probabilistic classifier.
|
139
|
+
elsif classified = Classifier.classify(Samples.cache, data, possible_language_names).first
|
140
140
|
# Return the actual Language object based of the string language name (i.e., first element of `#classify`)
|
141
141
|
Language[classified[0]]
|
142
142
|
end
|
@@ -510,9 +510,9 @@ module Linguist
|
|
510
510
|
end
|
511
511
|
end
|
512
512
|
|
513
|
-
extensions = Samples
|
514
|
-
interpreters = Samples
|
515
|
-
filenames = Samples
|
513
|
+
extensions = Samples.cache['extnames']
|
514
|
+
interpreters = Samples.cache['interpreters']
|
515
|
+
filenames = Samples.cache['filenames']
|
516
516
|
popular = YAML.load_file(File.expand_path("../popular.yml", __FILE__))
|
517
517
|
|
518
518
|
languages_yml = File.expand_path("../languages.yml", __FILE__)
|
data/lib/linguist/languages.yml
CHANGED
@@ -119,7 +119,7 @@ ApacheConf:
|
|
119
119
|
|
120
120
|
Apex:
|
121
121
|
type: programming
|
122
|
-
lexer:
|
122
|
+
lexer: Java
|
123
123
|
extensions:
|
124
124
|
- .cls
|
125
125
|
|
@@ -283,7 +283,7 @@ C#:
|
|
283
283
|
type: programming
|
284
284
|
ace_mode: csharp
|
285
285
|
search_term: csharp
|
286
|
-
color: "#
|
286
|
+
color: "#178600"
|
287
287
|
aliases:
|
288
288
|
- csharp
|
289
289
|
extensions:
|
@@ -748,6 +748,7 @@ Forth:
|
|
748
748
|
- .fth
|
749
749
|
- .4th
|
750
750
|
- .forth
|
751
|
+
- .frt
|
751
752
|
|
752
753
|
Frege:
|
753
754
|
type: programming
|
@@ -756,6 +757,14 @@ Frege:
|
|
756
757
|
extensions:
|
757
758
|
- .fr
|
758
759
|
|
760
|
+
G-code:
|
761
|
+
type: data
|
762
|
+
lexer: Text only
|
763
|
+
extensions:
|
764
|
+
- .g
|
765
|
+
- .gco
|
766
|
+
- .gcode
|
767
|
+
|
759
768
|
Game Maker Language:
|
760
769
|
type: programming
|
761
770
|
color: "#8ad353"
|
@@ -785,6 +794,12 @@ GAS:
|
|
785
794
|
- .s
|
786
795
|
- .S
|
787
796
|
|
797
|
+
GDScript:
|
798
|
+
type: programming
|
799
|
+
lexer: Text only
|
800
|
+
extensions:
|
801
|
+
- .gd
|
802
|
+
|
788
803
|
GLSL:
|
789
804
|
group: C
|
790
805
|
type: programming
|
@@ -877,6 +892,12 @@ Grammatical Framework:
|
|
877
892
|
searchable: true
|
878
893
|
color: "#ff0000"
|
879
894
|
|
895
|
+
Graph Modeling Language:
|
896
|
+
type: data
|
897
|
+
lexer: Text only
|
898
|
+
extensions:
|
899
|
+
- .gml
|
900
|
+
|
880
901
|
Groff:
|
881
902
|
extensions:
|
882
903
|
- .man
|
@@ -1149,6 +1170,7 @@ JavaScript:
|
|
1149
1170
|
- .es6
|
1150
1171
|
- .frag
|
1151
1172
|
- .jake
|
1173
|
+
- .jsb
|
1152
1174
|
- .jsfl
|
1153
1175
|
- .jsm
|
1154
1176
|
- .jss
|
@@ -1704,6 +1726,7 @@ Pascal:
|
|
1704
1726
|
- .dfm
|
1705
1727
|
- .dpr
|
1706
1728
|
- .lpr
|
1729
|
+
- .pp
|
1707
1730
|
|
1708
1731
|
Perl:
|
1709
1732
|
type: programming
|
@@ -1792,6 +1815,7 @@ Processing:
|
|
1792
1815
|
|
1793
1816
|
Prolog:
|
1794
1817
|
type: programming
|
1818
|
+
lexer: Logtalk
|
1795
1819
|
color: "#74283c"
|
1796
1820
|
extensions:
|
1797
1821
|
- .pl
|
data/lib/linguist/lazy_blob.rb
CHANGED
@@ -1,8 +1,13 @@
|
|
1
1
|
require 'linguist/blob_helper'
|
2
|
+
require 'linguist/language'
|
2
3
|
require 'rugged'
|
3
4
|
|
4
5
|
module Linguist
|
5
6
|
class LazyBlob
|
7
|
+
GIT_ATTR = ['linguist-language', 'linguist-vendored']
|
8
|
+
GIT_ATTR_OPTS = { :priority => [:index], :skip_system => true }
|
9
|
+
GIT_ATTR_FLAGS = Rugged::Repository::Attributes.parse_opts(GIT_ATTR_OPTS)
|
10
|
+
|
6
11
|
include BlobHelper
|
7
12
|
|
8
13
|
MAX_SIZE = 128 * 1024
|
@@ -19,6 +24,29 @@ module Linguist
|
|
19
24
|
@mode = mode
|
20
25
|
end
|
21
26
|
|
27
|
+
def git_attributes
|
28
|
+
@git_attributes ||= repository.fetch_attributes(
|
29
|
+
name, GIT_ATTR, GIT_ATTR_FLAGS)
|
30
|
+
end
|
31
|
+
|
32
|
+
def vendored?
|
33
|
+
if attr = git_attributes['linguist-vendored']
|
34
|
+
return boolean_attribute(attr)
|
35
|
+
else
|
36
|
+
return super
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
def language
|
41
|
+
return @language if defined?(@language)
|
42
|
+
|
43
|
+
@language = if lang = git_attributes['linguist-language']
|
44
|
+
Language.find_by_name(lang)
|
45
|
+
else
|
46
|
+
super
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
22
50
|
def data
|
23
51
|
load_blob!
|
24
52
|
@data
|
@@ -30,6 +58,12 @@ module Linguist
|
|
30
58
|
end
|
31
59
|
|
32
60
|
protected
|
61
|
+
|
62
|
+
# Returns true if the attribute is present and not the string "false".
|
63
|
+
def boolean_attribute(attr)
|
64
|
+
attr != "false"
|
65
|
+
end
|
66
|
+
|
33
67
|
def load_blob!
|
34
68
|
@data, @size = Rugged::Blob.to_buffer(repository, oid, MAX_SIZE) if @data.nil?
|
35
69
|
end
|
data/lib/linguist/repository.rb
CHANGED
@@ -110,18 +110,30 @@ module Linguist
|
|
110
110
|
if @old_commit_oid == @commit_oid
|
111
111
|
@old_stats
|
112
112
|
else
|
113
|
-
compute_stats(@old_commit_oid, @
|
113
|
+
compute_stats(@old_commit_oid, @old_stats)
|
114
114
|
end
|
115
115
|
end
|
116
116
|
end
|
117
117
|
|
118
|
+
def read_index
|
119
|
+
attr_index = Rugged::Index.new
|
120
|
+
attr_index.read_tree(current_tree)
|
121
|
+
repository.index = attr_index
|
122
|
+
end
|
123
|
+
|
124
|
+
def current_tree
|
125
|
+
@tree ||= Rugged::Commit.lookup(repository, @commit_oid).tree
|
126
|
+
end
|
127
|
+
|
118
128
|
protected
|
119
|
-
|
129
|
+
|
130
|
+
def compute_stats(old_commit_oid, cache = nil)
|
120
131
|
file_map = cache ? cache.dup : {}
|
121
132
|
old_tree = old_commit_oid && Rugged::Commit.lookup(repository, old_commit_oid).tree
|
122
|
-
new_tree = Rugged::Commit.lookup(repository, commit_oid).tree
|
123
133
|
|
124
|
-
|
134
|
+
read_index
|
135
|
+
|
136
|
+
diff = Rugged::Tree.diff(repository, old_tree, current_tree)
|
125
137
|
|
126
138
|
diff.each_delta do |delta|
|
127
139
|
old = delta.old_file[:path]
|
data/lib/linguist/samples.json
CHANGED
@@ -176,11 +176,15 @@
|
|
176
176
|
],
|
177
177
|
"Forth": [
|
178
178
|
".forth",
|
179
|
+
".frt",
|
179
180
|
".fth"
|
180
181
|
],
|
181
182
|
"Frege": [
|
182
183
|
".fr"
|
183
184
|
],
|
185
|
+
"G-code": [
|
186
|
+
".g"
|
187
|
+
],
|
184
188
|
"GAMS": [
|
185
189
|
".gms"
|
186
190
|
],
|
@@ -192,6 +196,9 @@
|
|
192
196
|
"GAS": [
|
193
197
|
".s"
|
194
198
|
],
|
199
|
+
"GDScript": [
|
200
|
+
".gd"
|
201
|
+
],
|
195
202
|
"GLSL": [
|
196
203
|
".fp",
|
197
204
|
".frag",
|
@@ -218,8 +225,13 @@
|
|
218
225
|
"Grammatical Framework": [
|
219
226
|
".gf"
|
220
227
|
],
|
228
|
+
"Graph Modeling Language": [
|
229
|
+
".gml"
|
230
|
+
],
|
231
|
+
"Groff": [
|
232
|
+
".4"
|
233
|
+
],
|
221
234
|
"Groovy": [
|
222
|
-
".gradle",
|
223
235
|
".grt",
|
224
236
|
".gtpl",
|
225
237
|
".gvy",
|
@@ -292,6 +304,7 @@
|
|
292
304
|
"JavaScript": [
|
293
305
|
".frag",
|
294
306
|
".js",
|
307
|
+
".jsb",
|
295
308
|
".script!",
|
296
309
|
".xsjs",
|
297
310
|
".xsjslib"
|
@@ -475,7 +488,8 @@
|
|
475
488
|
".pir"
|
476
489
|
],
|
477
490
|
"Pascal": [
|
478
|
-
".dpr"
|
491
|
+
".dpr",
|
492
|
+
".pp"
|
479
493
|
],
|
480
494
|
"Perl": [
|
481
495
|
".cgi",
|
@@ -525,6 +539,9 @@
|
|
525
539
|
"Protocol Buffer": [
|
526
540
|
".proto"
|
527
541
|
],
|
542
|
+
"Puppet": [
|
543
|
+
".pp"
|
544
|
+
],
|
528
545
|
"PureScript": [
|
529
546
|
".purs"
|
530
547
|
],
|
@@ -854,8 +871,8 @@
|
|
854
871
|
"exception.zep.php"
|
855
872
|
]
|
856
873
|
},
|
857
|
-
"tokens_total":
|
858
|
-
"languages_total":
|
874
|
+
"tokens_total": 663251,
|
875
|
+
"languages_total": 927,
|
859
876
|
"tokens": {
|
860
877
|
"ABAP": {
|
861
878
|
"*/**": 1,
|
@@ -21804,18 +21821,49 @@
|
|
21804
21821
|
"flush": 1
|
21805
21822
|
},
|
21806
21823
|
"Forth": {
|
21807
|
-
"
|
21824
|
+
"Bit": 1,
|
21825
|
+
"arrays.": 1,
|
21826
|
+
"bits": 5,
|
21827
|
+
"(": 98,
|
21828
|
+
"u1": 1,
|
21829
|
+
"-": 487,
|
21830
|
+
"u2": 1,
|
21831
|
+
")": 97,
|
21832
|
+
"+": 21,
|
21833
|
+
"rshift": 2,
|
21834
|
+
";": 74,
|
21835
|
+
"bitmap": 1,
|
21836
|
+
"u": 5,
|
21837
|
+
"create": 6,
|
21838
|
+
"here": 10,
|
21839
|
+
"over": 9,
|
21840
|
+
"erase": 1,
|
21841
|
+
"allot": 3,
|
21842
|
+
"does": 9,
|
21843
|
+
"a": 5,
|
21844
|
+
"x": 15,
|
21845
|
+
"rot": 5,
|
21846
|
+
"and": 6,
|
21847
|
+
"lshift": 1,
|
21848
|
+
"bit@": 1,
|
21849
|
+
"f": 2,
|
21850
|
+
"swap": 17,
|
21851
|
+
"c@": 5,
|
21852
|
+
"bit": 5,
|
21853
|
+
"or": 2,
|
21854
|
+
"c": 5,
|
21855
|
+
"invert": 2,
|
21856
|
+
"if": 10,
|
21857
|
+
"else": 7,
|
21858
|
+
"then": 6,
|
21808
21859
|
"Block": 2,
|
21809
|
-
"words.":
|
21810
|
-
")": 87,
|
21860
|
+
"words.": 7,
|
21811
21861
|
"variable": 3,
|
21812
21862
|
"blk": 3,
|
21813
21863
|
"current": 5,
|
21814
|
-
"-": 473,
|
21815
21864
|
"block": 8,
|
21816
21865
|
"n": 22,
|
21817
21866
|
"addr": 11,
|
21818
|
-
";": 61,
|
21819
21867
|
"buffer": 2,
|
21820
21868
|
"evaluate": 1,
|
21821
21869
|
"extended": 3,
|
@@ -21823,11 +21871,11 @@
|
|
21823
21871
|
"flush": 1,
|
21824
21872
|
"load": 2,
|
21825
21873
|
"...": 4,
|
21826
|
-
"dup":
|
21874
|
+
"dup": 14,
|
21827
21875
|
"save": 2,
|
21828
21876
|
"input": 2,
|
21829
|
-
"in":
|
21830
|
-
"@":
|
21877
|
+
"in": 5,
|
21878
|
+
"@": 16,
|
21831
21879
|
"source": 5,
|
21832
21880
|
"#source": 2,
|
21833
21881
|
"interpret": 1,
|
@@ -21845,11 +21893,8 @@
|
|
21845
21893
|
"loop": 4,
|
21846
21894
|
"refill": 2,
|
21847
21895
|
"thru": 1,
|
21848
|
-
"x": 10,
|
21849
21896
|
"y": 5,
|
21850
|
-
"
|
21851
|
-
"swap": 12,
|
21852
|
-
"*": 9,
|
21897
|
+
"*": 10,
|
21853
21898
|
"forth": 2,
|
21854
21899
|
"Copyright": 3,
|
21855
21900
|
"Lars": 3,
|
@@ -21858,26 +21903,22 @@
|
|
21858
21903
|
"#tib": 2,
|
21859
21904
|
"TODO": 12,
|
21860
21905
|
".r": 1,
|
21861
|
-
".":
|
21862
|
-
"[":
|
21906
|
+
".": 6,
|
21907
|
+
"[": 22,
|
21863
21908
|
"char": 10,
|
21864
|
-
"]":
|
21909
|
+
"]": 22,
|
21865
21910
|
"parse": 5,
|
21866
21911
|
"type": 3,
|
21867
|
-
"immediate":
|
21868
|
-
"<":
|
21912
|
+
"immediate": 22,
|
21913
|
+
"<": 15,
|
21869
21914
|
"flag": 4,
|
21870
21915
|
"r": 18,
|
21871
21916
|
"x1": 5,
|
21872
21917
|
"x2": 5,
|
21873
21918
|
"R": 13,
|
21874
|
-
"rot": 2,
|
21875
21919
|
"r@": 2,
|
21876
21920
|
"noname": 1,
|
21877
21921
|
"align": 2,
|
21878
|
-
"here": 9,
|
21879
|
-
"c": 3,
|
21880
|
-
"allot": 2,
|
21881
21922
|
"lastxt": 4,
|
21882
21923
|
"SP": 1,
|
21883
21924
|
"query": 1,
|
@@ -21885,18 +21926,11 @@
|
|
21885
21926
|
"body": 1,
|
21886
21927
|
"true": 1,
|
21887
21928
|
"tuck": 2,
|
21888
|
-
"over": 5,
|
21889
21929
|
"u.r": 1,
|
21890
|
-
"u": 3,
|
21891
|
-
"if": 9,
|
21892
21930
|
"drop": 4,
|
21893
21931
|
"false": 1,
|
21894
|
-
"else": 6,
|
21895
|
-
"then": 5,
|
21896
21932
|
"unused": 1,
|
21897
21933
|
"value": 1,
|
21898
|
-
"create": 2,
|
21899
|
-
"does": 5,
|
21900
21934
|
"within": 1,
|
21901
21935
|
"compile": 2,
|
21902
21936
|
"Forth2012": 2,
|
@@ -21906,7 +21940,6 @@
|
|
21906
21940
|
"defer": 2,
|
21907
21941
|
"name": 1,
|
21908
21942
|
"s": 4,
|
21909
|
-
"c@": 2,
|
21910
21943
|
"negate": 1,
|
21911
21944
|
"nip": 2,
|
21912
21945
|
"bl": 4,
|
@@ -21932,7 +21965,7 @@
|
|
21932
21965
|
"branch": 5,
|
21933
21966
|
"dodoes_code": 1,
|
21934
21967
|
"code": 3,
|
21935
|
-
"begin":
|
21968
|
+
"begin": 3,
|
21936
21969
|
"dest": 5,
|
21937
21970
|
"while": 2,
|
21938
21971
|
"repeat": 2,
|
@@ -21941,7 +21974,6 @@
|
|
21941
21974
|
"pad": 3,
|
21942
21975
|
"If": 1,
|
21943
21976
|
"necessary": 1,
|
21944
|
-
"and": 3,
|
21945
21977
|
"keep": 1,
|
21946
21978
|
"parsing.": 1,
|
21947
21979
|
"string": 3,
|
@@ -21952,6 +21984,16 @@
|
|
21952
21984
|
"<quote>": 1,
|
21953
21985
|
"Undefined": 1,
|
21954
21986
|
"ok": 1,
|
21987
|
+
"Implements": 1,
|
21988
|
+
"ENUM.": 1,
|
21989
|
+
"Double": 1,
|
21990
|
+
"DOES": 1,
|
21991
|
+
"enum": 2,
|
21992
|
+
"But": 1,
|
21993
|
+
"this": 1,
|
21994
|
+
"is": 1,
|
21995
|
+
"simpler.": 1,
|
21996
|
+
"constant": 1,
|
21955
21997
|
"HELLO": 4,
|
21956
21998
|
"KataDiversion": 1,
|
21957
21999
|
"Forth": 1,
|
@@ -21994,7 +22036,6 @@
|
|
21994
22036
|
"has": 1,
|
21995
22037
|
"two": 2,
|
21996
22038
|
"adjacent": 2,
|
21997
|
-
"bits": 3,
|
21998
22039
|
"NOT": 3,
|
21999
22040
|
"TWO": 3,
|
22000
22041
|
"ADJACENT": 3,
|
@@ -22022,7 +22063,6 @@
|
|
22022
22063
|
"m": 2,
|
22023
22064
|
"**n": 1,
|
22024
22065
|
"numbers": 1,
|
22025
|
-
"or": 1,
|
22026
22066
|
"less": 1,
|
22027
22067
|
"have": 1,
|
22028
22068
|
"not": 1,
|
@@ -22032,6 +22072,11 @@
|
|
22032
22072
|
"//www.codekata.com/2007/01/code_kata_fifte.html": 1,
|
22033
22073
|
"HOW": 1,
|
22034
22074
|
"MANY": 1,
|
22075
|
+
"Simplifies": 1,
|
22076
|
+
"compiling": 1,
|
22077
|
+
"Usage": 1,
|
22078
|
+
"foo": 2,
|
22079
|
+
"bar": 1,
|
22035
22080
|
"Tools": 2,
|
22036
22081
|
".s": 1,
|
22037
22082
|
"depth": 1,
|
@@ -22051,7 +22096,6 @@
|
|
22051
22096
|
"synonym": 1,
|
22052
22097
|
"undefined": 2,
|
22053
22098
|
"defined": 1,
|
22054
|
-
"invert": 1,
|
22055
22099
|
"/cell": 2,
|
22056
22100
|
"cell": 2
|
22057
22101
|
},
|
@@ -22836,6 +22880,69 @@
|
|
22836
22880
|
"newContentPane.setOpaque": 1,
|
22837
22881
|
"frame.setContentPane": 1
|
22838
22882
|
},
|
22883
|
+
"G-code": {
|
22884
|
+
";": 8,
|
22885
|
+
"RepRapPro": 1,
|
22886
|
+
"Ormerod": 1,
|
22887
|
+
"Board": 1,
|
22888
|
+
"test": 1,
|
22889
|
+
"GCodes": 1,
|
22890
|
+
"M111": 1,
|
22891
|
+
"S1": 1,
|
22892
|
+
"Debug": 1,
|
22893
|
+
"on": 1,
|
22894
|
+
"G21": 1,
|
22895
|
+
"mm": 1,
|
22896
|
+
"G90": 1,
|
22897
|
+
"Absolute": 1,
|
22898
|
+
"positioning": 1,
|
22899
|
+
"M83": 1,
|
22900
|
+
"Extrusion": 1,
|
22901
|
+
"relative": 1,
|
22902
|
+
"M906": 1,
|
22903
|
+
"X800": 1,
|
22904
|
+
"Y800": 1,
|
22905
|
+
"Z800": 1,
|
22906
|
+
"E800": 1,
|
22907
|
+
"Motor": 1,
|
22908
|
+
"currents": 1,
|
22909
|
+
"(": 1,
|
22910
|
+
"mA": 1,
|
22911
|
+
")": 1,
|
22912
|
+
"T0": 2,
|
22913
|
+
"Extruder": 1,
|
22914
|
+
"G1": 17,
|
22915
|
+
"X50": 1,
|
22916
|
+
"F500": 2,
|
22917
|
+
"X0": 2,
|
22918
|
+
"G4": 18,
|
22919
|
+
"P500": 6,
|
22920
|
+
"Y50": 1,
|
22921
|
+
"Y0": 2,
|
22922
|
+
"Z20": 1,
|
22923
|
+
"F200": 2,
|
22924
|
+
"Z0": 1,
|
22925
|
+
"E20": 1,
|
22926
|
+
"E": 1,
|
22927
|
+
"-": 146,
|
22928
|
+
"M106": 2,
|
22929
|
+
"S255": 1,
|
22930
|
+
"S0": 1,
|
22931
|
+
"M105": 13,
|
22932
|
+
"G10": 1,
|
22933
|
+
"P0": 1,
|
22934
|
+
"S100": 2,
|
22935
|
+
"M140": 1,
|
22936
|
+
"P5000": 12,
|
22937
|
+
"M0": 2,
|
22938
|
+
"e": 145,
|
22939
|
+
"G28": 1,
|
22940
|
+
"X55": 3,
|
22941
|
+
"Y5": 3,
|
22942
|
+
"F2000": 1,
|
22943
|
+
"Y180": 2,
|
22944
|
+
"X180": 2
|
22945
|
+
},
|
22839
22946
|
"GAMS": {
|
22840
22947
|
"*Basic": 1,
|
22841
22948
|
"example": 2,
|
@@ -24207,6 +24314,391 @@
|
|
24207
24314
|
"xd": 1,
|
24208
24315
|
".subsections_via_symbols": 1
|
24209
24316
|
},
|
24317
|
+
"GDScript": {
|
24318
|
+
"extends": 4,
|
24319
|
+
"BaseClass": 1,
|
24320
|
+
"var": 86,
|
24321
|
+
"a": 6,
|
24322
|
+
"s": 4,
|
24323
|
+
"arr": 1,
|
24324
|
+
"[": 22,
|
24325
|
+
"]": 22,
|
24326
|
+
"dict": 1,
|
24327
|
+
"{": 2,
|
24328
|
+
"}": 2,
|
24329
|
+
"const": 11,
|
24330
|
+
"answer": 1,
|
24331
|
+
"thename": 1,
|
24332
|
+
"v2": 1,
|
24333
|
+
"Vector2": 61,
|
24334
|
+
"(": 314,
|
24335
|
+
")": 313,
|
24336
|
+
"v3": 1,
|
24337
|
+
"Vector3": 9,
|
24338
|
+
"func": 19,
|
24339
|
+
"some_function": 1,
|
24340
|
+
"param1": 4,
|
24341
|
+
"param2": 5,
|
24342
|
+
"local_var": 2,
|
24343
|
+
"if": 56,
|
24344
|
+
"<": 14,
|
24345
|
+
"print": 6,
|
24346
|
+
"elif": 4,
|
24347
|
+
"else": 11,
|
24348
|
+
"for": 9,
|
24349
|
+
"i": 7,
|
24350
|
+
"in": 12,
|
24351
|
+
"range": 6,
|
24352
|
+
"while": 1,
|
24353
|
+
"-": 31,
|
24354
|
+
"local_var2": 2,
|
24355
|
+
"+": 24,
|
24356
|
+
"return": 14,
|
24357
|
+
"class": 1,
|
24358
|
+
"Something": 1,
|
24359
|
+
"_init": 1,
|
24360
|
+
"lv": 10,
|
24361
|
+
"Something.new": 1,
|
24362
|
+
"lv.a": 1,
|
24363
|
+
"Control": 1,
|
24364
|
+
"score": 4,
|
24365
|
+
"score_label": 2,
|
24366
|
+
"null": 1,
|
24367
|
+
"MAX_SHAPES": 2,
|
24368
|
+
"block": 3,
|
24369
|
+
"preload": 2,
|
24370
|
+
"block_colors": 3,
|
24371
|
+
"Color": 7,
|
24372
|
+
"block_shapes": 4,
|
24373
|
+
"#": 18,
|
24374
|
+
"I": 1,
|
24375
|
+
"O": 1,
|
24376
|
+
"S": 1,
|
24377
|
+
"Z": 1,
|
24378
|
+
"L": 1,
|
24379
|
+
"J": 1,
|
24380
|
+
"T": 1,
|
24381
|
+
"block_rotations": 2,
|
24382
|
+
"Matrix32": 4,
|
24383
|
+
"width": 5,
|
24384
|
+
"height": 6,
|
24385
|
+
"cells": 8,
|
24386
|
+
"piece_active": 7,
|
24387
|
+
"false": 16,
|
24388
|
+
"piece_shape": 8,
|
24389
|
+
"piece_pos": 3,
|
24390
|
+
"piece_rot": 5,
|
24391
|
+
"piece_cell_xform": 4,
|
24392
|
+
"p": 2,
|
24393
|
+
"er": 4,
|
24394
|
+
"r": 2,
|
24395
|
+
"%": 3,
|
24396
|
+
".xform": 1,
|
24397
|
+
"_draw": 1,
|
24398
|
+
"sb": 2,
|
24399
|
+
"get_stylebox": 1,
|
24400
|
+
"use": 1,
|
24401
|
+
"line": 1,
|
24402
|
+
"edit": 1,
|
24403
|
+
"bg": 1,
|
24404
|
+
"draw_style_box": 1,
|
24405
|
+
"Rect2": 5,
|
24406
|
+
"get_size": 1,
|
24407
|
+
".grow": 1,
|
24408
|
+
"bs": 3,
|
24409
|
+
"block.get_size": 1,
|
24410
|
+
"y": 12,
|
24411
|
+
"x": 12,
|
24412
|
+
"draw_texture_rect": 2,
|
24413
|
+
"*bs": 2,
|
24414
|
+
"c": 6,
|
24415
|
+
"piece_check_fit": 6,
|
24416
|
+
"ofs": 2,
|
24417
|
+
"pos": 4,
|
24418
|
+
"pos.x": 2,
|
24419
|
+
"pos.y": 2,
|
24420
|
+
"true": 11,
|
24421
|
+
"new_piece": 3,
|
24422
|
+
"randi": 1,
|
24423
|
+
"width/2": 1,
|
24424
|
+
"piece_pos.y": 2,
|
24425
|
+
"not": 5,
|
24426
|
+
"#game": 1,
|
24427
|
+
"over": 1,
|
24428
|
+
"#print": 1,
|
24429
|
+
"game_over": 2,
|
24430
|
+
"update": 7,
|
24431
|
+
"test_collapse_rows": 2,
|
24432
|
+
"accum_down": 6,
|
24433
|
+
"collapse": 3,
|
24434
|
+
"cells.erase": 1,
|
24435
|
+
"accum_down*100": 1,
|
24436
|
+
"score_label.set_text": 2,
|
24437
|
+
"str": 1,
|
24438
|
+
"get_node": 24,
|
24439
|
+
".set_text": 2,
|
24440
|
+
"restart_pressed": 1,
|
24441
|
+
"cells.clear": 1,
|
24442
|
+
"piece_move_down": 2,
|
24443
|
+
"piece_rotate": 2,
|
24444
|
+
"adv": 2,
|
24445
|
+
"_input": 1,
|
24446
|
+
"ie": 1,
|
24447
|
+
"ie.is_pressed": 1,
|
24448
|
+
"ie.is_action": 4,
|
24449
|
+
"piece_pos.x": 2,
|
24450
|
+
"setup": 2,
|
24451
|
+
"w": 3,
|
24452
|
+
"h": 3,
|
24453
|
+
"set_size": 1,
|
24454
|
+
"*block.get_size": 1,
|
24455
|
+
".start": 1,
|
24456
|
+
"_ready": 3,
|
24457
|
+
"Initalization": 2,
|
24458
|
+
"here": 2,
|
24459
|
+
"set_process_input": 1,
|
24460
|
+
"RigidBody": 1,
|
24461
|
+
"#var": 1,
|
24462
|
+
"dir": 8,
|
24463
|
+
"ANIM_FLOOR": 2,
|
24464
|
+
"ANIM_AIR_UP": 2,
|
24465
|
+
"ANIM_AIR_DOWN": 2,
|
24466
|
+
"SHOOT_TIME": 2,
|
24467
|
+
"SHOOT_SCALE": 2,
|
24468
|
+
"CHAR_SCALE": 2,
|
24469
|
+
"facing_dir": 2,
|
24470
|
+
"movement_dir": 3,
|
24471
|
+
"jumping": 5,
|
24472
|
+
"turn_speed": 2,
|
24473
|
+
"keep_jump_inertia": 2,
|
24474
|
+
"air_idle_deaccel": 2,
|
24475
|
+
"accel": 2,
|
24476
|
+
"deaccel": 2,
|
24477
|
+
"sharp_turn_threshhold": 2,
|
24478
|
+
"max_speed": 5,
|
24479
|
+
"on_floor": 3,
|
24480
|
+
"prev_shoot": 3,
|
24481
|
+
"last_floor_velocity": 5,
|
24482
|
+
"shoot_blend": 7,
|
24483
|
+
"adjust_facing": 3,
|
24484
|
+
"p_facing": 4,
|
24485
|
+
"p_target": 2,
|
24486
|
+
"p_step": 2,
|
24487
|
+
"p_adjust_rate": 2,
|
24488
|
+
"current_gn": 2,
|
24489
|
+
"n": 2,
|
24490
|
+
"normal": 1,
|
24491
|
+
"t": 2,
|
24492
|
+
"n.cross": 1,
|
24493
|
+
".normalized": 2,
|
24494
|
+
"n.dot": 1,
|
24495
|
+
"t.dot": 1,
|
24496
|
+
"ang": 12,
|
24497
|
+
"atan2": 1,
|
24498
|
+
"abs": 1,
|
24499
|
+
"too": 1,
|
24500
|
+
"small": 1,
|
24501
|
+
"sign": 1,
|
24502
|
+
"*": 15,
|
24503
|
+
"turn": 3,
|
24504
|
+
"cos": 2,
|
24505
|
+
"sin": 1,
|
24506
|
+
"p_facing.length": 1,
|
24507
|
+
"_integrate_forces": 1,
|
24508
|
+
"state": 5,
|
24509
|
+
"state.get_linear_velocity": 1,
|
24510
|
+
"linear": 1,
|
24511
|
+
"velocity": 3,
|
24512
|
+
"g": 3,
|
24513
|
+
"state.get_total_gravity": 1,
|
24514
|
+
"delta": 8,
|
24515
|
+
"state.get_step": 1,
|
24516
|
+
"d": 2,
|
24517
|
+
"delta*state.get_total_density": 1,
|
24518
|
+
"<0):>": 2,
|
24519
|
+
"d=": 1,
|
24520
|
+
"apply": 1,
|
24521
|
+
"gravity": 2,
|
24522
|
+
"anim": 4,
|
24523
|
+
"up": 12,
|
24524
|
+
"normalized": 6,
|
24525
|
+
"is": 1,
|
24526
|
+
"against": 1,
|
24527
|
+
"vv": 5,
|
24528
|
+
"dot": 3,
|
24529
|
+
"vertical": 1,
|
24530
|
+
"hv": 8,
|
24531
|
+
"horizontal": 3,
|
24532
|
+
"hdir": 7,
|
24533
|
+
"direction": 6,
|
24534
|
+
"hspeed": 14,
|
24535
|
+
"length": 1,
|
24536
|
+
"speed": 2,
|
24537
|
+
"floor_velocity": 5,
|
24538
|
+
"onfloor": 6,
|
24539
|
+
"get_contact_count": 2,
|
24540
|
+
"0": 6,
|
24541
|
+
"get_contact_local_shape": 1,
|
24542
|
+
"1": 2,
|
24543
|
+
"continue": 1,
|
24544
|
+
"get_contact_collider_velocity_at_pos": 1,
|
24545
|
+
"break": 1,
|
24546
|
+
"where": 1,
|
24547
|
+
"does": 1,
|
24548
|
+
"the": 1,
|
24549
|
+
"player": 1,
|
24550
|
+
"intend": 1,
|
24551
|
+
"to": 3,
|
24552
|
+
"walk": 1,
|
24553
|
+
"cam_xform": 5,
|
24554
|
+
"target": 1,
|
24555
|
+
"camera": 1,
|
24556
|
+
"get_global_transform": 1,
|
24557
|
+
"Input": 6,
|
24558
|
+
"is_action_pressed": 6,
|
24559
|
+
"move_forward": 1,
|
24560
|
+
"basis": 5,
|
24561
|
+
"2": 2,
|
24562
|
+
"move_backwards": 1,
|
24563
|
+
"move_left": 1,
|
24564
|
+
"move_right": 1,
|
24565
|
+
"jump_attempt": 2,
|
24566
|
+
"jump": 2,
|
24567
|
+
"shoot_attempt": 3,
|
24568
|
+
"shoot": 1,
|
24569
|
+
"target_dir": 5,
|
24570
|
+
"sharp_turn": 2,
|
24571
|
+
"and": 16,
|
24572
|
+
"rad2deg": 1,
|
24573
|
+
"acos": 1,
|
24574
|
+
"target_dir.dot": 1,
|
24575
|
+
"dir.length": 2,
|
24576
|
+
"#linear_dir": 1,
|
24577
|
+
"linear_h_velocity/linear_vel": 1,
|
24578
|
+
"#if": 2,
|
24579
|
+
"linear_vel": 1,
|
24580
|
+
"brake_velocity_limit": 1,
|
24581
|
+
"linear_dir.dot": 1,
|
24582
|
+
"ctarget_dir": 1,
|
24583
|
+
"Math": 1,
|
24584
|
+
"deg2rad": 1,
|
24585
|
+
"brake_angular_limit": 1,
|
24586
|
+
"brake": 1,
|
24587
|
+
"#else": 1,
|
24588
|
+
"/hspeed*turn_speed": 1,
|
24589
|
+
"accel*delta": 1,
|
24590
|
+
"deaccel*delta": 1,
|
24591
|
+
"hspeed=": 1,
|
24592
|
+
"mesh_xform": 2,
|
24593
|
+
"Armature": 2,
|
24594
|
+
"get_transform": 1,
|
24595
|
+
"facing_mesh=": 1,
|
24596
|
+
"facing_mesh": 7,
|
24597
|
+
"m3": 2,
|
24598
|
+
"Matrix3": 1,
|
24599
|
+
"cross": 1,
|
24600
|
+
"scaled": 1,
|
24601
|
+
"set_transform": 1,
|
24602
|
+
"Transform": 1,
|
24603
|
+
"origin": 1,
|
24604
|
+
"7": 1,
|
24605
|
+
"sfx": 1,
|
24606
|
+
"play": 1,
|
24607
|
+
"hs": 1,
|
24608
|
+
"hv.length": 1,
|
24609
|
+
"hv.normalized": 1,
|
24610
|
+
"hdir*hspeed": 1,
|
24611
|
+
"up*vv": 1,
|
24612
|
+
"#lv": 1,
|
24613
|
+
"pass": 2,
|
24614
|
+
"state.set_linear_velocity": 1,
|
24615
|
+
"bullet": 3,
|
24616
|
+
".instance": 1,
|
24617
|
+
"bullet.set_transform": 1,
|
24618
|
+
".get_global_transform": 2,
|
24619
|
+
".orthonormalized": 1,
|
24620
|
+
"get_parent": 1,
|
24621
|
+
".add_child": 1,
|
24622
|
+
"bullet.set_linear_velocity": 1,
|
24623
|
+
".basis": 1,
|
24624
|
+
"PS.body_add_collision_exception": 1,
|
24625
|
+
"bullet.get_rid": 1,
|
24626
|
+
"get_rid": 1,
|
24627
|
+
"#add": 1,
|
24628
|
+
"it": 1,
|
24629
|
+
".play": 1,
|
24630
|
+
".blend2_node_set_amount": 2,
|
24631
|
+
"/": 1,
|
24632
|
+
".transition_node_set_current": 1,
|
24633
|
+
"min": 1,
|
24634
|
+
"state.set_angular_velocity": 1,
|
24635
|
+
".set_active": 1,
|
24636
|
+
"Node2D": 1,
|
24637
|
+
"INITIAL_BALL_SPEED": 3,
|
24638
|
+
"ball_speed": 2,
|
24639
|
+
"screen_size": 2,
|
24640
|
+
"#default": 1,
|
24641
|
+
"ball": 3,
|
24642
|
+
"pad_size": 4,
|
24643
|
+
"PAD_SPEED": 1,
|
24644
|
+
"_process": 1,
|
24645
|
+
"get": 2,
|
24646
|
+
"positio": 1,
|
24647
|
+
"pad": 3,
|
24648
|
+
"rectangles": 1,
|
24649
|
+
"ball_pos": 8,
|
24650
|
+
".get_pos": 5,
|
24651
|
+
"left_rect": 1,
|
24652
|
+
"pad_size*0.5": 2,
|
24653
|
+
"right_rect": 1,
|
24654
|
+
"#integrate": 1,
|
24655
|
+
"new": 1,
|
24656
|
+
"postion": 1,
|
24657
|
+
"direction*ball_speed*delta": 1,
|
24658
|
+
"#flip": 2,
|
24659
|
+
"when": 2,
|
24660
|
+
"touching": 2,
|
24661
|
+
"roof": 1,
|
24662
|
+
"or": 4,
|
24663
|
+
"floor": 1,
|
24664
|
+
"ball_pos.y": 1,
|
24665
|
+
"direction.y": 5,
|
24666
|
+
"<0)>": 1,
|
24667
|
+
"screen_size.y": 3,
|
24668
|
+
"change": 1,
|
24669
|
+
"increase": 1,
|
24670
|
+
"pads": 1,
|
24671
|
+
"left_rect.has_point": 1,
|
24672
|
+
"direction.x": 4,
|
24673
|
+
"right_rect.has_point": 1,
|
24674
|
+
"ball_speed*": 1,
|
24675
|
+
"randf": 1,
|
24676
|
+
"*2.0": 1,
|
24677
|
+
"direction.normalized": 1,
|
24678
|
+
"#check": 1,
|
24679
|
+
"gameover": 1,
|
24680
|
+
"ball_pos.x": 1,
|
24681
|
+
"<0>": 1,
|
24682
|
+
"screen_size.x": 1,
|
24683
|
+
"screen_size*0.5": 1,
|
24684
|
+
".set_pos": 3,
|
24685
|
+
"#move": 2,
|
24686
|
+
"left": 1,
|
24687
|
+
"left_pos": 2,
|
24688
|
+
"left_pos.y": 4,
|
24689
|
+
"Input.is_action_pressed": 4,
|
24690
|
+
"PAD_SPEED*delta": 4,
|
24691
|
+
"right": 1,
|
24692
|
+
"right_pos": 2,
|
24693
|
+
"right_pos.y": 4,
|
24694
|
+
"get_viewport_rect": 1,
|
24695
|
+
".size": 1,
|
24696
|
+
"actual": 1,
|
24697
|
+
"size": 1,
|
24698
|
+
".get_texture": 1,
|
24699
|
+
".get_size": 1,
|
24700
|
+
"set_process": 1
|
24701
|
+
},
|
24210
24702
|
"GLSL": {
|
24211
24703
|
"////": 4,
|
24212
24704
|
"High": 1,
|
@@ -27470,6 +27962,38 @@
|
|
27470
27962
|
"mlad": 7,
|
27471
27963
|
"vynikajici": 7
|
27472
27964
|
},
|
27965
|
+
"Graph Modeling Language": {
|
27966
|
+
"graph": 1,
|
27967
|
+
"[": 4,
|
27968
|
+
"directed": 1,
|
27969
|
+
"node": 2,
|
27970
|
+
"id": 2,
|
27971
|
+
"label": 2,
|
27972
|
+
"value": 2,
|
27973
|
+
"]": 4,
|
27974
|
+
"edge": 1,
|
27975
|
+
"source": 1,
|
27976
|
+
"target": 1
|
27977
|
+
},
|
27978
|
+
"Groff": {
|
27979
|
+
".TH": 1,
|
27980
|
+
"FOO": 1,
|
27981
|
+
".SH": 3,
|
27982
|
+
"NAME": 1,
|
27983
|
+
"foo": 2,
|
27984
|
+
"-": 1,
|
27985
|
+
"bar": 4,
|
27986
|
+
"SYNOPSIS": 1,
|
27987
|
+
".B": 2,
|
27988
|
+
".I": 1,
|
27989
|
+
"DESCRIPTION": 1,
|
27990
|
+
"Foo": 2,
|
27991
|
+
".BR": 1,
|
27992
|
+
"baz": 1,
|
27993
|
+
"quux.": 1,
|
27994
|
+
".PP": 1,
|
27995
|
+
"baz.": 1
|
27996
|
+
},
|
27473
27997
|
"Groovy": {
|
27474
27998
|
"task": 1,
|
27475
27999
|
"echoDirListViaAntBuilder": 1,
|
@@ -29493,11 +30017,11 @@
|
|
29493
30017
|
".internalBuildGeneratedFileFrom": 1
|
29494
30018
|
},
|
29495
30019
|
"JavaScript": {
|
29496
|
-
"function":
|
29497
|
-
"(":
|
29498
|
-
")":
|
29499
|
-
"{":
|
29500
|
-
";":
|
30020
|
+
"function": 1215,
|
30021
|
+
"(": 8531,
|
30022
|
+
")": 8539,
|
30023
|
+
"{": 2743,
|
30024
|
+
";": 4073,
|
29501
30025
|
"//": 410,
|
29502
30026
|
"jshint": 1,
|
29503
30027
|
"_": 9,
|
@@ -29512,14 +30036,14 @@
|
|
29512
30036
|
".proxy": 1,
|
29513
30037
|
"this.hide": 1,
|
29514
30038
|
"this": 578,
|
29515
|
-
"}":
|
30039
|
+
"}": 2719,
|
29516
30040
|
"Modal.prototype": 1,
|
29517
30041
|
"constructor": 8,
|
29518
30042
|
"toggle": 10,
|
29519
30043
|
"return": 947,
|
29520
|
-
"[":
|
30044
|
+
"[": 1465,
|
29521
30045
|
"this.isShown": 3,
|
29522
|
-
"]":
|
30046
|
+
"]": 1462,
|
29523
30047
|
"show": 10,
|
29524
30048
|
"that": 33,
|
29525
30049
|
"e": 663,
|
@@ -33306,6 +33830,15 @@
|
|
33306
33830
|
"res.writeHead": 1,
|
33307
33831
|
"res.end": 1,
|
33308
33832
|
".listen": 1,
|
33833
|
+
"jsb.library": 1,
|
33834
|
+
"jsb.STATIC_LIBRARY": 1,
|
33835
|
+
"libObject": 1,
|
33836
|
+
"libObject.outputName": 1,
|
33837
|
+
"libObject.cflags": 1,
|
33838
|
+
"libObject.ldflags": 1,
|
33839
|
+
"libObject.includePaths": 1,
|
33840
|
+
"libObject.sources": 1,
|
33841
|
+
"jsb.build": 1,
|
33309
33842
|
"Date.prototype.toJSON": 2,
|
33310
33843
|
"isFinite": 1,
|
33311
33844
|
"this.valueOf": 2,
|
@@ -53168,28 +53701,219 @@
|
|
53168
53701
|
".end": 1
|
53169
53702
|
},
|
53170
53703
|
"Pascal": {
|
53704
|
+
"unit": 3,
|
53705
|
+
"custforms": 1,
|
53706
|
+
";": 122,
|
53707
|
+
"{": 25,
|
53708
|
+
"mode": 2,
|
53709
|
+
"objfpc": 2,
|
53710
|
+
"}": 25,
|
53711
|
+
"H": 2,
|
53712
|
+
"+": 7,
|
53713
|
+
"interface": 2,
|
53714
|
+
"uses": 3,
|
53715
|
+
"Classes": 1,
|
53716
|
+
"SysUtils": 1,
|
53717
|
+
"Forms": 2,
|
53718
|
+
"Type": 2,
|
53719
|
+
"TCustomFormDescr": 13,
|
53720
|
+
"Class": 2,
|
53721
|
+
"private": 2,
|
53722
|
+
"FAuthor": 3,
|
53723
|
+
"String": 23,
|
53724
|
+
"FCaption": 4,
|
53725
|
+
"FCategory": 4,
|
53726
|
+
"FDescription": 4,
|
53727
|
+
"FFormClass": 4,
|
53728
|
+
"TFormClass": 10,
|
53729
|
+
"FLazPackage": 4,
|
53730
|
+
"FUnitName": 4,
|
53731
|
+
"public": 1,
|
53732
|
+
"Constructor": 3,
|
53733
|
+
"Create": 5,
|
53734
|
+
"(": 39,
|
53735
|
+
"AFormClass": 12,
|
53736
|
+
"const": 5,
|
53737
|
+
"APackage": 12,
|
53738
|
+
"string": 4,
|
53739
|
+
")": 39,
|
53740
|
+
"Const": 4,
|
53741
|
+
"ACaption": 3,
|
53742
|
+
"ADescription": 3,
|
53743
|
+
"AUnit": 3,
|
53744
|
+
"Property": 8,
|
53745
|
+
"FormClass": 1,
|
53746
|
+
"Read": 8,
|
53747
|
+
"Write": 7,
|
53748
|
+
"Caption": 1,
|
53749
|
+
"Description": 1,
|
53750
|
+
"UnitName": 1,
|
53751
|
+
"Category": 1,
|
53752
|
+
"Author": 1,
|
53753
|
+
"LazPackage": 1,
|
53754
|
+
"end": 17,
|
53755
|
+
"Procedure": 10,
|
53756
|
+
"RegisterCustomForm": 8,
|
53757
|
+
"Descr": 3,
|
53758
|
+
"AUnitName": 3,
|
53759
|
+
"Register": 2,
|
53760
|
+
"implementation": 2,
|
53761
|
+
"ProjectIntf": 1,
|
53762
|
+
"NewItemIntf": 1,
|
53763
|
+
"contnrs": 1,
|
53764
|
+
"SAppFrameWork": 2,
|
53765
|
+
"SInstanceOf": 2,
|
53766
|
+
"constructor": 3,
|
53767
|
+
"TCustomFormDescr.Create": 4,
|
53768
|
+
"Var": 4,
|
53769
|
+
"N": 5,
|
53770
|
+
"U": 5,
|
53771
|
+
"begin": 15,
|
53772
|
+
"AFormClass.ClassName": 1,
|
53773
|
+
"If": 2,
|
53774
|
+
"Upcase": 1,
|
53775
|
+
"[": 5,
|
53776
|
+
"]": 5,
|
53777
|
+
"then": 2,
|
53778
|
+
"Delete": 1,
|
53779
|
+
"Format": 1,
|
53780
|
+
"TCustomFormFileDescriptor": 3,
|
53781
|
+
"TFileDescPascalUnitWithResource": 1,
|
53782
|
+
"FFormDescr": 3,
|
53783
|
+
"Public": 1,
|
53784
|
+
"ADescr": 3,
|
53785
|
+
"FormDescr": 1,
|
53786
|
+
"Function": 3,
|
53787
|
+
"GetLocalizedName": 1,
|
53788
|
+
"override": 3,
|
53789
|
+
"GetLocalizedDescription": 1,
|
53790
|
+
"GetInterfaceUsesSection": 2,
|
53791
|
+
"TCustomFormFileDescriptor.Create": 2,
|
53792
|
+
"Inherited": 1,
|
53793
|
+
"ResourceClass": 1,
|
53794
|
+
"FFormDescr.FFormClass": 1,
|
53795
|
+
"Name": 1,
|
53796
|
+
"FFormDescr.Caption": 2,
|
53797
|
+
"RequiredPackages": 2,
|
53798
|
+
"ADescr.LazPackage": 1,
|
53799
|
+
"//Writeln": 1,
|
53800
|
+
"function": 3,
|
53801
|
+
"TCustomFormFileDescriptor.GetLocalizedName": 1,
|
53802
|
+
"Result": 7,
|
53803
|
+
"TCustomFormFileDescriptor.GetLocalizedDescription": 1,
|
53804
|
+
"FFormDescr.Description": 1,
|
53805
|
+
"FFormDescr.Author": 2,
|
53806
|
+
"<": 1,
|
53807
|
+
"LineEnding": 1,
|
53808
|
+
"TCustomFormFileDescriptor.GetInterfaceUsesSection": 1,
|
53809
|
+
"inherited": 1,
|
53810
|
+
"FFormDescr.UnitName": 1,
|
53811
|
+
"CustomFormList": 5,
|
53812
|
+
"TObjectList": 1,
|
53813
|
+
"CustomFormList.Add": 1,
|
53814
|
+
"D": 6,
|
53815
|
+
"D.UnitName": 1,
|
53816
|
+
"L": 3,
|
53817
|
+
"TStringList": 1,
|
53818
|
+
"I": 9,
|
53819
|
+
"Integer": 1,
|
53820
|
+
"TStringList.Create": 1,
|
53821
|
+
"Try": 1,
|
53822
|
+
"L.Sorted": 1,
|
53823
|
+
"True": 2,
|
53824
|
+
"L.Duplicates": 1,
|
53825
|
+
"dupIgnore": 1,
|
53826
|
+
"For": 3,
|
53827
|
+
"to": 3,
|
53828
|
+
"CustomFormList.Count": 2,
|
53829
|
+
"-": 230,
|
53830
|
+
"do": 3,
|
53831
|
+
"L.Add": 1,
|
53832
|
+
"i": 3,
|
53833
|
+
".Category": 1,
|
53834
|
+
"L.Count": 1,
|
53835
|
+
"RegisterNewItemCategory": 1,
|
53836
|
+
"TNewIDEItemCategory.Create": 1,
|
53837
|
+
"Finally": 1,
|
53838
|
+
"L.Free": 1,
|
53839
|
+
"RegisterProjectFileDescriptor": 1,
|
53840
|
+
"D.Category": 1,
|
53841
|
+
"InitCustomForms": 2,
|
53842
|
+
"TObjectList.Create": 1,
|
53843
|
+
"DoneCustomForms": 2,
|
53844
|
+
"FreeAndNil": 1,
|
53845
|
+
"Initialization": 1,
|
53846
|
+
"Finalization": 1,
|
53847
|
+
"end.": 3,
|
53848
|
+
"Id": 1,
|
53849
|
+
"gtkextra.pp": 1,
|
53850
|
+
"GTK": 1,
|
53851
|
+
"widgetset": 1,
|
53852
|
+
"additional": 1,
|
53853
|
+
"gdk/gtk": 2,
|
53854
|
+
"functions": 2,
|
53855
|
+
"This": 2,
|
53856
|
+
"contains": 1,
|
53857
|
+
"missing": 1,
|
53858
|
+
"and": 1,
|
53859
|
+
"defines": 1,
|
53860
|
+
"for": 2,
|
53861
|
+
"certain": 1,
|
53862
|
+
"versions": 1,
|
53863
|
+
"of": 2,
|
53864
|
+
"gtk": 1,
|
53865
|
+
"or": 1,
|
53866
|
+
"fpc.": 1,
|
53867
|
+
"@created": 1,
|
53868
|
+
"Sun": 1,
|
53869
|
+
"Jan": 1,
|
53870
|
+
"th": 1,
|
53871
|
+
"WET": 1,
|
53872
|
+
"@lastmod": 1,
|
53873
|
+
"Date": 1,
|
53874
|
+
"@author": 1,
|
53875
|
+
"Marc": 1,
|
53876
|
+
"Weustink": 1,
|
53877
|
+
"<marc@@dommelstein.nl>": 1,
|
53878
|
+
"*****************************************************************************": 2,
|
53879
|
+
"file": 2,
|
53880
|
+
"is": 1,
|
53881
|
+
"part": 1,
|
53882
|
+
"the": 3,
|
53883
|
+
"Lazarus": 1,
|
53884
|
+
"Component": 1,
|
53885
|
+
"Library": 1,
|
53886
|
+
"LCL": 1,
|
53887
|
+
"See": 1,
|
53888
|
+
"COPYING.modifiedLGPL.txt": 1,
|
53889
|
+
"included": 1,
|
53890
|
+
"in": 2,
|
53891
|
+
"this": 1,
|
53892
|
+
"distribution": 1,
|
53893
|
+
"details": 1,
|
53894
|
+
"about": 1,
|
53895
|
+
"license.": 1,
|
53896
|
+
"GtkExtra": 1,
|
53897
|
+
"gtkdefines.inc": 1,
|
53898
|
+
"ifdef": 4,
|
53899
|
+
"gtk1": 2,
|
53900
|
+
"gtk1extrah.inc": 1,
|
53901
|
+
"endif": 4,
|
53902
|
+
"gtk2": 2,
|
53903
|
+
"gtk2extrah.inc": 1,
|
53904
|
+
"gtk1extra.inc": 1,
|
53905
|
+
"gtk2extra.inc": 1,
|
53171
53906
|
"program": 1,
|
53172
53907
|
"gmail": 1,
|
53173
|
-
";": 6,
|
53174
|
-
"uses": 1,
|
53175
|
-
"Forms": 1,
|
53176
53908
|
"Unit2": 1,
|
53177
|
-
"in": 1,
|
53178
|
-
"{": 2,
|
53179
53909
|
"Form2": 2,
|
53180
|
-
"}": 2,
|
53181
53910
|
"R": 1,
|
53182
53911
|
"*.res": 1,
|
53183
|
-
"begin": 1,
|
53184
53912
|
"Application.Initialize": 1,
|
53185
53913
|
"Application.MainFormOnTaskbar": 1,
|
53186
|
-
"True": 1,
|
53187
53914
|
"Application.CreateForm": 1,
|
53188
|
-
"(": 1,
|
53189
53915
|
"TForm2": 1,
|
53190
|
-
"
|
53191
|
-
"Application.Run": 1,
|
53192
|
-
"end.": 1
|
53916
|
+
"Application.Run": 1
|
53193
53917
|
},
|
53194
53918
|
"Perl": {
|
53195
53919
|
"package": 14,
|
@@ -58856,6 +59580,50 @@
|
|
58856
59580
|
"AddressBook": 1,
|
58857
59581
|
"person": 1
|
58858
59582
|
},
|
59583
|
+
"Puppet": {
|
59584
|
+
"define": 1,
|
59585
|
+
"example": 1,
|
59586
|
+
"expiringhost": 1,
|
59587
|
+
"(": 4,
|
59588
|
+
"ip": 3,
|
59589
|
+
"timestamp": 1,
|
59590
|
+
")": 4,
|
59591
|
+
"{": 14,
|
59592
|
+
"age": 2,
|
59593
|
+
"inline_template": 1,
|
59594
|
+
"maxage": 2,
|
59595
|
+
"if": 1,
|
59596
|
+
"expired": 3,
|
59597
|
+
"true": 3,
|
59598
|
+
"notice": 2,
|
59599
|
+
"}": 14,
|
59600
|
+
"else": 1,
|
59601
|
+
"false": 2,
|
59602
|
+
"host": 1,
|
59603
|
+
"name": 1,
|
59604
|
+
"target": 1,
|
59605
|
+
"ensure": 1,
|
59606
|
+
"absent": 1,
|
59607
|
+
"present": 1,
|
59608
|
+
";": 9,
|
59609
|
+
"class": 3,
|
59610
|
+
"foo": 1,
|
59611
|
+
"notify": 3,
|
59612
|
+
"bar": 1,
|
59613
|
+
"node": 1,
|
59614
|
+
"default": 1,
|
59615
|
+
"stage": 3,
|
59616
|
+
"Stage": 2,
|
59617
|
+
"[": 3,
|
59618
|
+
"]": 3,
|
59619
|
+
"-": 1,
|
59620
|
+
"file": 1,
|
59621
|
+
"source": 1,
|
59622
|
+
"Exec": 1,
|
59623
|
+
"exec": 1,
|
59624
|
+
"command": 1,
|
59625
|
+
"refreshonly": 1
|
59626
|
+
},
|
58859
59627
|
"PureScript": {
|
58860
59628
|
"module": 4,
|
58861
59629
|
"Control.Arrow": 1,
|
@@ -73158,17 +73926,21 @@
|
|
73158
73926
|
"Emacs Lisp": 1756,
|
73159
73927
|
"EmberScript": 45,
|
73160
73928
|
"Erlang": 2928,
|
73161
|
-
"Forth":
|
73929
|
+
"Forth": 1679,
|
73162
73930
|
"Frege": 5564,
|
73931
|
+
"G-code": 432,
|
73163
73932
|
"GAMS": 363,
|
73164
73933
|
"GAP": 9944,
|
73165
73934
|
"GAS": 133,
|
73935
|
+
"GDScript": 1958,
|
73166
73936
|
"GLSL": 4076,
|
73167
73937
|
"Game Maker Language": 13310,
|
73168
73938
|
"Gnuplot": 1023,
|
73169
73939
|
"Gosu": 410,
|
73170
73940
|
"Grace": 1381,
|
73171
73941
|
"Grammatical Framework": 10607,
|
73942
|
+
"Graph Modeling Language": 21,
|
73943
|
+
"Groff": 25,
|
73172
73944
|
"Groovy": 93,
|
73173
73945
|
"Groovy Server Pages": 91,
|
73174
73946
|
"HTML": 413,
|
@@ -73190,7 +73962,7 @@
|
|
73190
73962
|
"JSONiq": 151,
|
73191
73963
|
"Jade": 3,
|
73192
73964
|
"Java": 8987,
|
73193
|
-
"JavaScript":
|
73965
|
+
"JavaScript": 77089,
|
73194
73966
|
"Julia": 247,
|
73195
73967
|
"KRL": 25,
|
73196
73968
|
"Kit": 6,
|
@@ -73246,7 +74018,7 @@
|
|
73246
74018
|
"Pan": 130,
|
73247
74019
|
"Parrot Assembly": 6,
|
73248
74020
|
"Parrot Internal Representation": 5,
|
73249
|
-
"Pascal":
|
74021
|
+
"Pascal": 987,
|
73250
74022
|
"Perl": 20690,
|
73251
74023
|
"Perl6": 372,
|
73252
74024
|
"PigLatin": 30,
|
@@ -73259,6 +74031,7 @@
|
|
73259
74031
|
"Prolog": 6948,
|
73260
74032
|
"Propeller Spin": 13519,
|
73261
74033
|
"Protocol Buffer": 63,
|
74034
|
+
"Puppet": 103,
|
73262
74035
|
"PureScript": 1652,
|
73263
74036
|
"Python": 6725,
|
73264
74037
|
"QMake": 119,
|
@@ -73373,17 +74146,21 @@
|
|
73373
74146
|
"Emacs Lisp": 2,
|
73374
74147
|
"EmberScript": 1,
|
73375
74148
|
"Erlang": 5,
|
73376
|
-
"Forth":
|
74149
|
+
"Forth": 10,
|
73377
74150
|
"Frege": 4,
|
74151
|
+
"G-code": 4,
|
73378
74152
|
"GAMS": 1,
|
73379
74153
|
"GAP": 7,
|
73380
74154
|
"GAS": 1,
|
74155
|
+
"GDScript": 4,
|
73381
74156
|
"GLSL": 7,
|
73382
74157
|
"Game Maker Language": 13,
|
73383
74158
|
"Gnuplot": 6,
|
73384
74159
|
"Gosu": 4,
|
73385
74160
|
"Grace": 2,
|
73386
74161
|
"Grammatical Framework": 41,
|
74162
|
+
"Graph Modeling Language": 1,
|
74163
|
+
"Groff": 1,
|
73387
74164
|
"Groovy": 5,
|
73388
74165
|
"Groovy Server Pages": 4,
|
73389
74166
|
"HTML": 2,
|
@@ -73405,7 +74182,7 @@
|
|
73405
74182
|
"JSONiq": 2,
|
73406
74183
|
"Jade": 1,
|
73407
74184
|
"Java": 6,
|
73408
|
-
"JavaScript":
|
74185
|
+
"JavaScript": 25,
|
73409
74186
|
"Julia": 1,
|
73410
74187
|
"KRL": 1,
|
73411
74188
|
"Kit": 1,
|
@@ -73461,7 +74238,7 @@
|
|
73461
74238
|
"Pan": 1,
|
73462
74239
|
"Parrot Assembly": 1,
|
73463
74240
|
"Parrot Internal Representation": 1,
|
73464
|
-
"Pascal":
|
74241
|
+
"Pascal": 3,
|
73465
74242
|
"Perl": 17,
|
73466
74243
|
"Perl6": 3,
|
73467
74244
|
"PigLatin": 1,
|
@@ -73474,6 +74251,7 @@
|
|
73474
74251
|
"Prolog": 8,
|
73475
74252
|
"Propeller Spin": 10,
|
73476
74253
|
"Protocol Buffer": 1,
|
74254
|
+
"Puppet": 3,
|
73477
74255
|
"PureScript": 4,
|
73478
74256
|
"Python": 11,
|
73479
74257
|
"QMake": 4,
|
@@ -73538,5 +74316,5 @@
|
|
73538
74316
|
"fish": 3,
|
73539
74317
|
"wisp": 1
|
73540
74318
|
},
|
73541
|
-
"md5": "
|
74319
|
+
"md5": "9cbea8fa53a44c8c68775862cb863af7"
|
73542
74320
|
}
|