Skip to content

Commit

Permalink
multiple visibility options
Browse files Browse the repository at this point in the history
  • Loading branch information
Aniket-Engg committed Aug 9, 2023
1 parent fb6ee38 commit af4b674
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion libs/remix-ui/editor/src/lib/providers/quickfixes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,25 @@ export default {
}
}],
"SyntaxError: No visibility specified. Did you intend to add \"public\"": [{
"id": 3,
"id": 3.1,
"title": "Add visibility 'public'",
"message": "public ",
"nodeType": "FunctionDefinition"
},{
"id": 3.2,
"title": "Add visibility 'private'",
"message": "private ",
"nodeType": "FunctionDefinition"
},{
"id": 3.3,
"title": "Add visibility 'internal'",
"message": "internal ",
"nodeType": "FunctionDefinition"
},{
"id": 3.4,
"title": "Add visibility 'external'",
"message": "external ",
"nodeType": "FunctionDefinition"
}],
"Warning: Function state mutability can be restricted to view": [{
"id": 4,
Expand Down

0 comments on commit af4b674

Please sign in to comment.