File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: c1157161d988a15156513dbe0f1f7895fb227606
2
+ refs/heads/master: e2205659e323b510686f594818e2f206e88e98f3
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: 4a81779abd786ff22d71434c6d9a5917ea4cdfff
5
5
refs/heads/try: 2898dcc5d97da9427ac367542382b6239d9c0bbf
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ exports.splitLines = function(string){return string.split(/\r?\n/);};
11
11
// Counts the column offset in a string, taking tabs into account.
12
12
// Used mostly to find indentation.
13
13
function countColumn ( string , end ) {
14
+ tabSize = 4 ;
14
15
if ( end == null ) {
15
16
end = string . search ( / [ ^ \s \u00a0 ] / ) ;
16
17
if ( end == - 1 ) end = string . length ;
Original file line number Diff line number Diff line change @@ -351,7 +351,7 @@ Examples of integer literals of various forms:
351
351
~~~~
352
352
123; 0xff00; // type determined by program context;
353
353
// defaults to int in absence of type
354
- // information
354
+ // information
355
355
356
356
123u; // type uint
357
357
123_u; // type uint
You can’t perform that action at this time.
0 commit comments