Cyrus Najmabadi
48bef4698b
Provide better error recovery when we encounter merge markers in the source.
...
Previously we would just treat each merge marker as trivia and then continue
scanning and parsing like normal. This worked well in some scenarios, but
fell down in others like:
```
class C {
public foo() {
<<<<<<< HEAD
this.bar();
}
=======
this.baz();
}
>>>>>>> Branch
public bar() { }
}
```
The problem stems from the previous approach trying to incorporate both branches of the merge into
the final tree. In a case like this, that approach breaks down entirely. The the parser ends up
seeing the close curly in both included sections, and it considers the class finished. Then, it
starts erroring when it encounters "public bar()".
The fix is to only incorporate one of these sections into the tree. Specifically, we only include
the first section. The second sectoin is treated like trivia and does not affect the parse at all.
To make the experience more pleasant we do *lexically* classify the second section. That way it
does not appear as just plain black text in the editor. Instead, it will have appropriate lexicla
classifications for keywords, literals, comments, operators, punctuation, etc. However, any syntactic
or semantic feature will not work in the second block due to this being trivia as far as any feature
is concerned.
This experience is still much better than what we had originally (where merge markers would absolutely)
destroy the parse tree. And it is better than what we checked in last week, which could easily create
a borked tree for many types of merges.
Now, almost all merges should still leave the tree in good shape. All LS features will work in the
first section, and lexical classification will work in the second.
2014-12-18 19:18:13 -08:00
..
2014-12-16 19:30:08 -08:00
2014-12-16 13:36:00 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 12:25:05 -08:00
2014-12-16 15:56:56 -08:00
2014-12-03 20:41:39 -08:00
2014-12-03 20:41:39 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 19:30:08 -08:00
2014-12-16 19:49:40 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 21:50:10 -08:00
2014-12-16 15:56:56 -08:00
2014-12-05 16:58:49 -08:00
2014-12-04 17:43:51 -08:00
2014-12-05 16:58:49 -08:00
2014-12-12 10:56:22 -08:00
2014-12-12 10:56:22 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-08 11:22:52 -08:00
2014-12-05 16:58:49 -08:00
2014-12-05 16:58:49 -08:00
2014-12-05 16:58:49 -08:00
2014-12-04 17:43:51 -08:00
2014-12-16 15:56:56 -08:00
2014-12-05 16:58:49 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 19:11:07 -08:00
2014-12-05 16:58:49 -08:00
2014-12-16 15:56:56 -08:00
2014-12-04 17:43:51 -08:00
2014-12-05 16:58:49 -08:00
2014-12-08 11:22:52 -08:00
2014-12-08 11:22:52 -08:00
2014-12-16 02:50:38 -08:00
2014-12-16 02:50:38 -08:00
2014-12-16 02:50:38 -08:00
2014-12-16 02:50:38 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 21:50:10 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 13:36:00 -08:00
2014-12-04 17:43:51 -08:00
2014-12-04 17:43:51 -08:00
2014-12-04 17:43:51 -08:00
2014-12-04 17:43:51 -08:00
2014-12-04 17:43:51 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-05 16:58:49 -08:00
2014-12-05 16:58:49 -08:00
2014-12-16 15:56:56 -08:00
2014-12-12 10:35:01 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 19:49:40 -08:00
2014-12-18 19:18:13 -08:00
2014-12-18 19:18:13 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 02:50:38 -08:00
2014-12-16 19:59:16 -08:00
2014-12-16 19:11:07 -08:00
2014-12-16 15:56:56 -08:00
2014-12-04 17:43:51 -08:00
2014-12-05 16:58:49 -08:00
2014-12-05 16:58:49 -08:00
2014-12-10 16:02:39 -08:00
2014-12-16 15:56:56 -08:00
2014-12-12 10:56:22 -08:00
2014-12-12 14:32:53 -08:00
2014-12-16 13:35:31 -08:00
2014-12-03 20:41:39 -08:00
2014-12-04 17:43:51 -08:00
2014-12-04 17:43:51 -08:00
2014-12-04 17:43:51 -08:00
2014-12-04 17:43:51 -08:00
2014-12-05 16:58:49 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-04 17:43:51 -08:00
2014-12-04 17:43:51 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 19:11:07 -08:00
2014-12-05 16:58:49 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 19:30:08 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-04 17:43:51 -08:00
2014-12-16 15:56:56 -08:00
2014-12-04 17:43:51 -08:00
2014-12-04 17:43:51 -08:00
2014-12-04 17:43:51 -08:00
2014-12-04 17:43:51 -08:00
2014-12-04 17:43:51 -08:00
2014-12-04 17:43:51 -08:00
2014-12-12 10:41:21 -08:00
2014-12-16 21:50:10 -08:00
2014-12-12 10:41:21 -08:00
2014-12-16 19:11:07 -08:00
2014-12-12 10:35:01 -08:00
2014-12-16 19:11:07 -08:00
2014-12-12 10:41:21 -08:00
2014-12-12 10:41:21 -08:00
2014-12-12 10:41:21 -08:00
2014-12-12 10:41:21 -08:00
2014-12-12 10:41:21 -08:00
2014-12-04 17:43:51 -08:00
2014-12-12 10:41:21 -08:00
2014-12-16 19:11:07 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 21:50:10 -08:00
2014-12-05 16:58:49 -08:00
2014-12-05 16:58:49 -08:00
2014-12-04 08:53:45 -08:00
2014-12-04 08:53:45 -08:00
2014-12-04 08:53:45 -08:00
2014-12-04 08:53:45 -08:00
2014-12-04 17:43:51 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-05 16:58:49 -08:00
2014-12-05 16:58:49 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 19:30:08 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-04 17:43:51 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-12 11:48:46 -08:00
2014-12-12 11:48:46 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-05 16:58:49 -08:00
2014-12-05 16:58:49 -08:00
2014-12-16 13:36:00 -08:00
2014-12-05 16:58:49 -08:00
2014-12-16 15:56:56 -08:00
2014-12-03 20:41:39 -08:00
2014-12-03 20:41:39 -08:00
2014-12-03 20:41:39 -08:00
2014-12-03 20:41:39 -08:00
2014-12-16 15:56:56 -08:00
2014-12-10 16:02:39 -08:00
2014-12-10 16:02:39 -08:00
2014-12-16 15:56:56 -08:00
2014-12-04 17:43:51 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-04 17:43:51 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 19:30:08 -08:00
2014-12-16 21:50:10 -08:00
2014-12-16 21:50:10 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 19:11:07 -08:00
2014-12-16 19:11:07 -08:00
2014-12-16 19:11:07 -08:00
2014-12-16 19:11:07 -08:00
2014-12-16 19:11:07 -08:00
2014-12-16 19:11:07 -08:00
2014-12-16 13:47:57 -08:00
2014-12-15 23:05:29 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 19:11:07 -08:00
2014-12-16 19:11:07 -08:00
2014-12-04 16:45:09 -08:00
2014-12-04 16:45:09 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 02:50:38 -08:00
2014-12-16 02:50:38 -08:00
2014-12-16 19:11:07 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-12 10:41:21 -08:00
2014-12-12 10:41:21 -08:00
2014-12-16 19:49:40 -08:00
2014-12-16 15:56:56 -08:00
2014-12-12 10:41:21 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 19:30:08 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 19:11:07 -08:00
2014-12-03 20:41:39 -08:00
2014-12-10 22:30:40 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-05 16:58:49 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 19:11:07 -08:00
2014-12-04 08:53:45 -08:00
2014-12-11 14:40:25 -08:00
2014-12-11 14:40:25 -08:00
2014-12-16 15:56:56 -08:00
2014-12-09 14:08:44 -08:00
2014-12-09 14:08:44 -08:00
2014-12-04 17:43:51 -08:00
2014-12-04 17:43:51 -08:00
2014-12-04 17:43:51 -08:00
2014-12-04 17:43:51 -08:00
2014-12-16 15:56:56 -08:00
2014-12-05 16:58:49 -08:00
2014-12-05 16:58:49 -08:00
2014-12-05 16:58:49 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 19:11:07 -08:00
2014-12-05 16:58:49 -08:00
2014-12-05 16:58:49 -08:00
2014-12-12 14:05:09 -08:00
2014-12-16 21:50:10 -08:00
2014-12-17 15:35:30 -08:00
2014-12-10 22:30:40 -08:00
2014-12-10 22:30:40 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 12:51:42 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-04 17:43:51 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-04 17:43:51 -08:00
2014-12-16 15:56:56 -08:00
2014-12-08 15:47:24 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 19:11:07 -08:00
2014-12-17 15:35:30 -08:00
2014-12-16 21:50:10 -08:00
2014-12-08 15:47:24 -08:00
2014-12-08 15:47:24 -08:00
2014-12-08 15:47:24 -08:00
2014-12-08 15:47:24 -08:00
2014-12-08 15:47:24 -08:00
2014-12-08 15:47:24 -08:00
2014-12-08 15:47:24 -08:00
2014-12-08 15:47:24 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 19:49:40 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 19:11:07 -08:00
2014-12-16 15:56:56 -08:00
2014-12-12 10:35:01 -08:00
2014-12-12 10:35:01 -08:00
2014-12-12 10:35:01 -08:00
2014-12-16 21:50:10 -08:00
2014-12-12 10:35:01 -08:00
2014-12-16 19:49:40 -08:00
2014-12-12 10:35:01 -08:00
2014-12-16 19:49:40 -08:00
2014-12-12 10:35:01 -08:00
2014-12-16 19:49:40 -08:00
2014-12-16 19:49:40 -08:00
2014-12-16 19:49:40 -08:00
2014-12-12 10:35:01 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 19:49:40 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-12 10:35:01 -08:00
2014-12-12 10:35:01 -08:00
2014-12-12 10:35:01 -08:00
2014-12-12 10:35:01 -08:00
2014-12-12 10:35:01 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 19:11:07 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 19:11:07 -08:00
2014-12-16 19:11:07 -08:00
2014-12-16 19:49:40 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 21:50:10 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-08 15:47:24 -08:00
2014-12-16 15:56:56 -08:00
2014-12-08 15:47:24 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-08 15:47:24 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-12 10:35:01 -08:00
2014-12-12 10:35:01 -08:00
2014-12-12 10:35:01 -08:00
2014-12-16 19:49:40 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 19:11:07 -08:00
2014-12-16 19:11:07 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 12:25:05 -08:00
2014-12-16 19:11:07 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-12 03:52:01 -08:00
2014-12-16 21:50:10 -08:00
2014-12-12 03:52:01 -08:00
2014-12-12 03:52:01 -08:00
2014-12-16 21:50:10 -08:00
2014-12-16 19:11:07 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 19:49:40 -08:00
2014-12-14 19:14:02 -08:00
2014-12-14 19:14:02 -08:00
2014-12-14 19:14:02 -08:00
2014-12-14 19:14:02 -08:00
2014-12-14 19:14:02 -08:00
2014-12-16 21:50:10 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 19:11:07 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 19:11:07 -08:00
2014-12-16 19:11:07 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-05 16:58:49 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 19:30:08 -08:00
2014-12-16 19:30:08 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-05 16:58:49 -08:00
2014-12-16 02:50:38 -08:00
2014-12-16 02:50:38 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-05 16:58:49 -08:00
2014-12-16 15:56:56 -08:00
2014-12-04 17:43:51 -08:00
2014-12-12 10:56:22 -08:00
2014-12-17 11:50:03 -08:00
2014-12-17 13:22:04 -08:00
2014-12-17 11:50:03 -08:00
2014-12-12 14:34:12 -08:00
2014-12-12 14:34:12 -08:00
2014-12-04 17:43:51 -08:00
2014-12-04 17:43:51 -08:00
2014-12-04 17:43:51 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 12:51:42 -08:00
2014-12-16 12:51:42 -08:00
2014-12-04 17:43:51 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 19:30:08 -08:00
2014-12-11 14:40:25 -08:00
2014-12-11 14:40:25 -08:00
2014-12-04 17:43:51 -08:00
2014-12-04 17:43:51 -08:00
2014-12-04 17:43:51 -08:00
2014-12-04 17:43:51 -08:00
2014-12-04 17:43:51 -08:00
2014-12-04 17:43:51 -08:00
2014-12-04 17:43:51 -08:00
2014-12-04 17:43:51 -08:00
2014-12-11 14:40:25 -08:00
2014-12-11 14:40:25 -08:00
2014-12-11 14:40:25 -08:00
2014-12-11 14:40:25 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-04 17:43:51 -08:00
2014-12-05 16:58:49 -08:00
2014-12-16 15:56:56 -08:00
2014-12-04 17:43:51 -08:00
2014-12-16 15:56:56 -08:00
2014-12-04 17:43:51 -08:00
2014-12-04 17:43:51 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 19:11:07 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 19:11:07 -08:00
2014-12-14 09:47:26 -08:00
2014-12-16 15:56:56 -08:00
2014-12-14 09:47:26 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 19:11:07 -08:00
2014-12-16 19:11:07 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 19:11:07 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-08 11:22:52 -08:00
2014-12-16 19:11:07 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-03 20:41:39 -08:00
2014-12-03 21:07:50 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-10 14:44:31 -08:00
2014-12-10 14:44:31 -08:00
2014-12-05 16:58:49 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-03 22:14:55 -08:00
2014-12-03 22:14:55 -08:00
2014-12-03 20:41:39 -08:00
2014-12-03 20:41:39 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-04 17:43:51 -08:00
2014-12-04 17:43:51 -08:00
2014-12-16 15:56:56 -08:00
2014-12-05 16:58:49 -08:00
2014-12-04 17:43:51 -08:00
2014-12-04 17:43:51 -08:00
2014-12-16 15:56:56 -08:00
2014-12-05 16:58:49 -08:00
2014-12-16 21:50:10 -08:00
2014-12-16 02:50:38 -08:00
2014-12-16 21:50:10 -08:00
2014-12-16 02:50:38 -08:00
2014-12-04 16:45:09 -08:00
2014-12-04 16:45:09 -08:00
2014-12-16 02:50:38 -08:00
2014-12-16 02:50:38 -08:00
2014-12-16 02:50:38 -08:00
2014-12-16 02:50:38 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 15:56:56 -08:00
2014-12-16 19:11:07 -08:00
2014-12-16 19:11:07 -08:00
2014-12-16 19:11:07 -08:00
2014-12-16 19:11:07 -08:00
2014-12-16 19:11:07 -08:00
2014-12-16 19:11:07 -08:00
2014-12-16 19:11:07 -08:00
2014-12-16 19:11:07 -08:00
2014-12-16 19:11:07 -08:00
2014-12-16 19:11:07 -08:00
2014-12-16 19:11:07 -08:00
2014-12-16 19:11:07 -08:00
2014-12-16 19:11:07 -08:00