Skip to content

Commit

Permalink
Merge pull request #107 from cesarParra/2.21.0_rc
Browse files Browse the repository at this point in the history
Added support for the Null Coalesce operator
  • Loading branch information
cesarParra authored Feb 17, 2024
2 parents 0cd13f8 80db5d1 commit eec1437
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion examples/force-app/main/default/classes/ChildClass.cls
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 14,7 @@ public class ChildClass extends ParentClass implements SampleInterface {
* @return A String.
*/
public override String overridableMethodOverridden() {
return '';
return null ?? '';
}

/**
Expand Down
18 changes: 9 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 1,6 @@
{
"name": "@cparra/apexdocs",
"version": "2.20.0",
"version": "2.21.0",
"description": "Library with CLI capabilities to generate documentation for Salesforce Apex classes.",
"keywords": [
"apex",
Expand Down Expand Up @@ -66,7 66,7 @@
]
},
"dependencies": {
"@cparra/apex-reflection": "2.6.0",
"@cparra/apex-reflection": "2.7.0",
"chalk": "^4.1.2",
"cosmiconfig": "^9.0.0",
"fast-xml-parser": "^4.0.1",
Expand Down

0 comments on commit eec1437

Please sign in to comment.