summaryrefslogtreecommitdiff
path: root/test/instrumented/srt.patch
blob: 2f472ff1c05b1c46afa12bca1ab732cf73082630 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
9a10,11
> /* INSTRUMENTED VERSION */
> 
33a36,38
>   var arrayApplyCount = 0
>   var arrayUpdateCount = 0
> 
35c40,42
<   def array_apply(xs: AnyRef, idx: Int): Any = xs match {
---
>   def array_apply(xs: AnyRef, idx: Int): Any = {
>     arrayApplyCount += 1
>     xs match {
47a55
>   }
50c58,60
<   def array_update(xs: AnyRef, idx: Int, value: Any): Unit = xs match {
---
>   def array_update(xs: AnyRef, idx: Int, value: Any): Unit = {
>     arrayUpdateCount += 1
>     xs match {
62a73
>   }