line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# Copyright 2020, Google LLC |
2
|
|
|
|
|
|
|
# |
3
|
|
|
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); |
4
|
|
|
|
|
|
|
# you may not use this file except in compliance with the License. |
5
|
|
|
|
|
|
|
# You may obtain a copy of the License at |
6
|
|
|
|
|
|
|
# |
7
|
|
|
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0 |
8
|
|
|
|
|
|
|
# |
9
|
|
|
|
|
|
|
# Unless required by applicable law or agreed to in writing, software |
10
|
|
|
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, |
11
|
|
|
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
12
|
|
|
|
|
|
|
# See the License for the specific language governing permissions and |
13
|
|
|
|
|
|
|
# limitations under the License. |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
use strict; |
17
|
1
|
|
|
1
|
|
846
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
26
|
|
18
|
1
|
|
|
1
|
|
5
|
|
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
75
|
|
19
|
|
|
|
|
|
|
use Const::Exporter enums => [ |
20
|
1
|
|
|
|
|
8
|
UNSPECIFIED => "UNSPECIFIED", |
21
|
|
|
|
|
|
|
UNKNOWN => "UNKNOWN", |
22
|
|
|
|
|
|
|
DEAL_ID => "DEAL_ID", |
23
|
|
|
|
|
|
|
DEAL_NAME => "DEAL_NAME", |
24
|
|
|
|
|
|
|
SUBTITLE => "SUBTITLE", |
25
|
|
|
|
|
|
|
DESCRIPTION => "DESCRIPTION", |
26
|
|
|
|
|
|
|
PRICE => "PRICE", |
27
|
|
|
|
|
|
|
FORMATTED_PRICE => "FORMATTED_PRICE", |
28
|
|
|
|
|
|
|
SALE_PRICE => "SALE_PRICE", |
29
|
|
|
|
|
|
|
FORMATTED_SALE_PRICE => "FORMATTED_SALE_PRICE", |
30
|
|
|
|
|
|
|
IMAGE_URL => "IMAGE_URL", |
31
|
|
|
|
|
|
|
ADDRESS => "ADDRESS", |
32
|
|
|
|
|
|
|
CATEGORY => "CATEGORY", |
33
|
|
|
|
|
|
|
CONTEXTUAL_KEYWORDS => "CONTEXTUAL_KEYWORDS", |
34
|
|
|
|
|
|
|
FINAL_URLS => "FINAL_URLS", |
35
|
|
|
|
|
|
|
FINAL_MOBILE_URLS => "FINAL_MOBILE_URLS", |
36
|
|
|
|
|
|
|
TRACKING_URL => "TRACKING_URL", |
37
|
|
|
|
|
|
|
ANDROID_APP_LINK => "ANDROID_APP_LINK", |
38
|
|
|
|
|
|
|
SIMILAR_DEAL_IDS => "SIMILAR_DEAL_IDS", |
39
|
|
|
|
|
|
|
IOS_APP_LINK => "IOS_APP_LINK", |
40
|
|
|
|
|
|
|
IOS_APP_STORE_ID => "IOS_APP_STORE_ID" |
41
|
|
|
|
|
|
|
]; |
42
|
1
|
|
|
1
|
|
10
|
|
|
1
|
|
|
|
|
2
|
|
43
|
|
|
|
|
|
|
1; |