blib/lib/Image/WordCloud/StopWords/EN.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 9 | 9 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 3 | 3 | 100.0 |
pod | n/a | ||
total | 12 | 12 | 100.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package Image::WordCloud::StopWords::EN; | ||||||
2 | |||||||
3 | 1 | 1 | 5 | use strict; | |||
1 | 1 | ||||||
1 | 62 | ||||||
4 | 1 | 1 | 6 | use warnings; | |||
1 | 1 | ||||||
1 | 25 | ||||||
5 | |||||||
6 | 1 | 1 | 5 | use base qw(Exporter); | |||
1 | 2 | ||||||
1 | 373 | ||||||
7 | |||||||
8 | our @EXPORT_OK = qw( %STOP_WORDS ); | ||||||
9 | |||||||
10 | our %STOP_WORDS = map { $_ => 1 } qw( | ||||||
11 | a | ||||||
12 | about | ||||||
13 | after | ||||||
14 | all | ||||||
15 | almost | ||||||
16 | among | ||||||
17 | an | ||||||
18 | and | ||||||
19 | any | ||||||
20 | are | ||||||
21 | as | ||||||
22 | at | ||||||
23 | be | ||||||
24 | been | ||||||
25 | before | ||||||
26 | being | ||||||
27 | but | ||||||
28 | by | ||||||
29 | can | ||||||
30 | come | ||||||
31 | did | ||||||
32 | do | ||||||
33 | even | ||||||
34 | ever | ||||||
35 | every | ||||||
36 | for | ||||||
37 | from | ||||||
38 | get | ||||||
39 | go | ||||||
40 | had | ||||||
41 | has | ||||||
42 | have | ||||||
43 | he | ||||||
44 | her | ||||||
45 | him | ||||||
46 | himself | ||||||
47 | his | ||||||
48 | i | ||||||
49 | if | ||||||
50 | in | ||||||
51 | into | ||||||
52 | is | ||||||
53 | it | ||||||
54 | its | ||||||
55 | last | ||||||
56 | like | ||||||
57 | long | ||||||
58 | made | ||||||
59 | may | ||||||
60 | me | ||||||
61 | might | ||||||
62 | more | ||||||
63 | more | ||||||
64 | most | ||||||
65 | much | ||||||
66 | must | ||||||
67 | my | ||||||
68 | no | ||||||
69 | not | ||||||
70 | now | ||||||
71 | of | ||||||
72 | on | ||||||
73 | one | ||||||
74 | only | ||||||
75 | or | ||||||
76 | other | ||||||
77 | out | ||||||
78 | own | ||||||
79 | said | ||||||
80 | same | ||||||
81 | say | ||||||
82 | see | ||||||
83 | she | ||||||
84 | should | ||||||
85 | so | ||||||
86 | some | ||||||
87 | still | ||||||
88 | than | ||||||
89 | that | ||||||
90 | that | ||||||
91 | the | ||||||
92 | their | ||||||
93 | them | ||||||
94 | then | ||||||
95 | there | ||||||
96 | these | ||||||
97 | they | ||||||
98 | this | ||||||
99 | those | ||||||
100 | thou | ||||||
101 | three | ||||||
102 | through | ||||||
103 | to | ||||||
104 | two | ||||||
105 | up | ||||||
106 | upon | ||||||
107 | was | ||||||
108 | were | ||||||
109 | what | ||||||
110 | when | ||||||
111 | where | ||||||
112 | which | ||||||
113 | while | ||||||
114 | who | ||||||
115 | who | ||||||
116 | will | ||||||
117 | with | ||||||
118 | would | ||||||
119 | you | ||||||
120 | your | ||||||
121 | ); | ||||||
122 | |||||||
123 | 1; | ||||||
124 | |||||||
125 | __END__ |