Skip to content

Commit

Permalink
feat(map): adds JSDoc @Private
Browse files Browse the repository at this point in the history
Signed-off-by: jonathan.casey <[email protected]>
  • Loading branch information
jonathan-casey committed Aug 14, 2023
1 parent 926f91d commit 04b0798
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/concerto-core/lib/introspect/mapkeytype.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ class MapKeyType extends Decorated {
* Sets the Type name for the Map Key
*
* @param {Object} ast - The AST created by the parser
* @private
*/
processType(ast) {
let decl;
Expand Down
1 change: 1 addition & 0 deletions packages/concerto-core/lib/introspect/mapvaluetype.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ class MapValueType extends Decorated {
* Sets the Type name for the Map Value
*
* @param {Object} ast - The AST created by the parser
* @private
*/
processType(ast) {
let decl;
Expand Down
1 change: 1 addition & 0 deletions packages/concerto-core/lib/serializer/jsonpopulator.js
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,7 @@ class JSONPopulator {
* @param {Object} value - the key or value belonging to the Map Entry.
* @param {Object} type - the Type associated with the Key or Value Map Entry.
* @return {Object} value - the key or value belonging to the Map Entry.
* @private
*/
processMapType(mapDeclaration, parameters, value, type) {
let decl = mapDeclaration.getModelFile()
Expand Down

0 comments on commit 04b0798

Please sign in to comment.