idlize
/test
/
0006-Provide-Consume-strange-args.patch
30 строк · 1.4 Кб
1From 7710a3d8c4fd2f96ceba1014038492831429ccc9 Mon Sep 17 00:00:00 2001
2From: Dmitrii <naumov.dmitrii@huawei.com>
3Date: Thu, 14 Dec 2023 13:01:02 +0300
4Subject: [PATCH] @Provide-@Consume-strange-args
5
6---
7.../others/decoratorKeyCheck/decoratorKeyCheck.ts | 12 ------------
81 file changed, 12 deletions(-)
9
10diff --git a/compiler/test/utForPartialUpdate/ui_state_management/others/decoratorKeyCheck/decoratorKeyCheck.ts b/compiler/test/utForPartialUpdate/ui_state_management/others/decoratorKeyCheck/decoratorKeyCheck.ts
11index 4d8a95d2..c66cb7ef 100644
12--- a/compiler/test/utForPartialUpdate/ui_state_management/others/decoratorKeyCheck/decoratorKeyCheck.ts
13+++ b/compiler/test/utForPartialUpdate/ui_state_management/others/decoratorKeyCheck/decoratorKeyCheck.ts
14@@ -42,14 +42,10 @@ struct Index {
15@StorageLink('StorageLink3') StorageLink3: string = 'StorageLink3';
16
17@Provide(stringVariable) Provide: string = 'Provide';
18- @Provide(stringObj.stringKey) Provide1: string = 'Provide1';
19- @Provide(stringFunction()) Provide2: string = 'Provide2';
20@Provide('Provide32') Provide3: string = 'Provide3';
21@Provide Provide4: string = 'Provide4';
22
23@Consume(stringVariable) Consume: string;
24- @Consume(stringObj.stringKey) Consume1: string;
25- @Consume(stringFunction()) Consume2: string;
26@Consume('Consume3') Consume3: string;
27@Consume Consume4: string;
28
29--
302.25.1
31
32