10059:9e3452188615 | 10060:b946699e9e79 |
---|---|
100 @param line logical line the token was found (string) | 100 @param line logical line the token was found (string) |
101 """ | 101 """ |
102 self.tokenlist.append( | 102 self.tokenlist.append( |
103 Token(type=toktype, text=toktext, row=srow, col=scol, line=line) | 103 Token(type=toktype, text=toktext, row=srow, col=scol, line=line) |
104 ) | 104 ) |
105 | |
106 | |
107 spacer = " " | |
108 | 105 |
109 | 106 |
110 class SourceStat: | 107 class SourceStat: |
111 """ | 108 """ |
112 Class used to calculate and store the source code statistics. | 109 Class used to calculate and store the source code statistics. |