mirror of
https://gitee.com/openharmony/developtools_ace_ets2bundle
synced 2024-11-23 08:29:55 +00:00
commit
6f2eb3ef92
@ -184,7 +184,7 @@
|
||||
"type": "ERROR"
|
||||
},
|
||||
"notConcurrent": {
|
||||
"message": "The struct 'IndexDecorator' use invalid decorator.",
|
||||
"message": "The struct 'NotConcurrentIndexDecorator' use invalid decorator.",
|
||||
"type": "WARN"
|
||||
},
|
||||
"notConcurrentFun": {
|
||||
@ -200,7 +200,7 @@
|
||||
"type": "WARN"
|
||||
},
|
||||
"vaildateDecorator": {
|
||||
"message": "The struct 'Index' use invalid decorator.",
|
||||
"message": "The struct 'VaildateDecoratorIndex' use invalid decorator.",
|
||||
"type": "WARN"
|
||||
},
|
||||
"state": {
|
||||
|
@ -16,7 +16,7 @@
|
||||
exports.source = `
|
||||
@Entry
|
||||
@Component
|
||||
struct HomeComponent {
|
||||
struct MonitorHomeComponent {
|
||||
|
||||
build() {
|
||||
Column() {}
|
||||
|
@ -16,7 +16,7 @@
|
||||
exports.source = `
|
||||
@Entry
|
||||
@Component
|
||||
struct summerpockets {
|
||||
struct ExceededEntrySummerpockets {
|
||||
build(){
|
||||
|
||||
}
|
||||
@ -24,7 +24,7 @@ struct summerpockets {
|
||||
|
||||
@Entry
|
||||
@Component
|
||||
struct ever17 {
|
||||
struct ExceededEntryEver17 {
|
||||
build(){
|
||||
|
||||
}
|
||||
|
@ -17,7 +17,7 @@ exports.source = `
|
||||
@Entry
|
||||
@Preview
|
||||
@Component
|
||||
struct summerpockets {
|
||||
struct ExceededPreviewSummerpockets {
|
||||
build(){
|
||||
|
||||
}
|
||||
@ -25,7 +25,7 @@ struct summerpockets {
|
||||
|
||||
@Preview
|
||||
@Component
|
||||
struct ever17 {
|
||||
struct ExceededPreviewEver17 {
|
||||
build(){
|
||||
|
||||
}
|
||||
|
@ -16,7 +16,7 @@
|
||||
exports.source = `
|
||||
@Entry
|
||||
@Component
|
||||
struct summerpockets {
|
||||
struct MethodNoExtendSummerpockets {
|
||||
@Extend
|
||||
build(){
|
||||
|
||||
|
@ -15,13 +15,13 @@
|
||||
|
||||
exports.source = `
|
||||
@Component
|
||||
function nekopara () {
|
||||
class nekopara {
|
||||
|
||||
}
|
||||
|
||||
@Entry
|
||||
@Component
|
||||
struct summerpockets {
|
||||
struct NoStructDecoSummerpockets {
|
||||
build(){
|
||||
}
|
||||
}
|
||||
|
@ -15,7 +15,7 @@
|
||||
|
||||
exports.source = `
|
||||
@Component
|
||||
struct summerpockets {
|
||||
struct OneEntrySummerpockets {
|
||||
build(){
|
||||
}
|
||||
}
|
||||
|
@ -14,16 +14,16 @@
|
||||
*/
|
||||
|
||||
exports.source = `
|
||||
class bsd {
|
||||
class OnlyStructDecoBsd {
|
||||
@Builder
|
||||
bsd() {
|
||||
OnlyStructDecoBsd() {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@Entry
|
||||
@Component
|
||||
struct summerpockets {
|
||||
struct OnlyStructDecoSummerpockets {
|
||||
build(){
|
||||
}
|
||||
}
|
||||
|
@ -14,9 +14,11 @@
|
||||
*/
|
||||
|
||||
exports.source = `
|
||||
@Entry
|
||||
@Component
|
||||
@Concurrent
|
||||
struct StylesDuplicate{
|
||||
@State @opacity: string = 'Hello Word'
|
||||
@State message:string = 'Hello Word'
|
||||
build(){
|
||||
Row(){
|
||||
Column(){
|
||||
|
@ -14,8 +14,9 @@
|
||||
*/
|
||||
|
||||
exports.source = `
|
||||
@Entry
|
||||
@Concurrent
|
||||
struct IndexDecorator{
|
||||
struct NotConcurrentIndexDecorator{
|
||||
build(){
|
||||
Column(){
|
||||
Text('hello')
|
||||
|
@ -16,9 +16,8 @@
|
||||
exports.source = `
|
||||
@Entry
|
||||
@Component
|
||||
struct StylesDuplicate{
|
||||
@State @opacity: string = 'Hello Word'
|
||||
@Concurrent conFun()
|
||||
struct notConcurrentFun{
|
||||
@Concurrent conFun(){}
|
||||
build(){
|
||||
Row(){
|
||||
Column(){
|
||||
@ -28,9 +27,7 @@ struct StylesDuplicate{
|
||||
.height('100%')
|
||||
}
|
||||
}
|
||||
conFun(){
|
||||
}
|
||||
function conFun() {
|
||||
throw new Error('Function not implemented.')
|
||||
throw new Error('Function not implemented.')
|
||||
}
|
||||
`
|
||||
|
@ -14,6 +14,8 @@
|
||||
*/
|
||||
|
||||
exports.source = `
|
||||
@Entry
|
||||
@Component
|
||||
@IndexDecorator
|
||||
struct IndexDecorator{
|
||||
build(){
|
||||
|
@ -14,6 +14,7 @@
|
||||
*/
|
||||
|
||||
exports.source = `
|
||||
@Entry
|
||||
@Component
|
||||
struct Button{
|
||||
@State message:string = 'Hello Word'
|
||||
|
@ -25,7 +25,7 @@ struct v2MemberDecorator {
|
||||
@Computed
|
||||
bb() {}
|
||||
|
||||
@Monitor("user") get value() {}
|
||||
@Monitor("user") get value(){ return "" }
|
||||
|
||||
build() {
|
||||
Column()
|
||||
|
@ -14,8 +14,9 @@
|
||||
*/
|
||||
|
||||
exports.source = `
|
||||
@Entry
|
||||
@Concurrent
|
||||
struct Index{
|
||||
struct VaildateDecoratorIndex{
|
||||
build(){
|
||||
Column(){
|
||||
Text('hello')
|
||||
|
@ -16,7 +16,7 @@
|
||||
exports.source = `
|
||||
@Entry
|
||||
@Component
|
||||
struct HomeComponent {
|
||||
struct ValidateAccessQualifierHomeComponent {
|
||||
@State message: string = "hello"
|
||||
|
||||
build() {
|
||||
|
@ -14,9 +14,11 @@
|
||||
*/
|
||||
|
||||
exports.source = `
|
||||
declare const CustomMethod: PropertyDecorator;
|
||||
|
||||
@Entry
|
||||
@Component
|
||||
struct HomeComponent {
|
||||
struct ValidateDifferentMethodHomeComponent {
|
||||
build() {
|
||||
Column() {}
|
||||
}
|
||||
@ -44,7 +46,7 @@ function testFunction3() {
|
||||
}
|
||||
|
||||
@Component
|
||||
struct TestComponent {
|
||||
struct ValidateDifferentMethodTestComponent {
|
||||
build() {
|
||||
|
||||
}
|
||||
@ -63,7 +65,7 @@ struct TestComponent {
|
||||
}
|
||||
|
||||
@ComponentV2
|
||||
struct TestComponent1 {
|
||||
struct ValidateDifferentMethodTestComponent1 {
|
||||
build() {
|
||||
|
||||
}
|
||||
|
@ -14,22 +14,24 @@
|
||||
*/
|
||||
|
||||
exports.source = `
|
||||
declare const CustomMethod: PropertyDecorator;
|
||||
|
||||
@Entry
|
||||
@Component
|
||||
struct HomeComponent {
|
||||
struct ValidateDuplicateMethodHomeComponent {
|
||||
build() {
|
||||
Column() {}
|
||||
}
|
||||
}
|
||||
@Builder
|
||||
@Builder
|
||||
function testFunction1() {
|
||||
function testFunction4() {
|
||||
Text("testFunction1")
|
||||
}
|
||||
|
||||
@CustomMethod
|
||||
@CustomMethod
|
||||
function testFunction2() {
|
||||
function testFunction5() {
|
||||
console.log("testFunction2")
|
||||
}
|
||||
|
||||
|
@ -16,8 +16,8 @@
|
||||
exports.source = `
|
||||
@Entry
|
||||
@Component
|
||||
struct HomeComponent {
|
||||
@Trace value: string
|
||||
struct ValidateTrackObservedHomeComponent {
|
||||
@Trace value: string = '';
|
||||
build() {
|
||||
Column() {
|
||||
Text("hello")
|
||||
@ -35,11 +35,11 @@ struct child {
|
||||
}
|
||||
|
||||
class A {
|
||||
@Trace value: string
|
||||
@Trace value: string = '';
|
||||
}
|
||||
|
||||
@ObservedV2
|
||||
class B {
|
||||
@Trace value: string
|
||||
@Trace value: string = '';
|
||||
}
|
||||
`;
|
||||
|
Loading…
Reference in New Issue
Block a user