ts2famix 2.0.1 → 2.1.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.json +24 -24
- package/.vscode/settings.json +4 -0
- package/LICENSE +24 -24
- package/README.md +78 -78
- package/TODO +1 -0
- package/arwea-fix.json +1 -0
- package/bogus.ts +3 -0
- package/class-diagram.puml +792 -0
- package/debug.txt +13332 -0
- package/debuglog.txt +12073 -0
- package/dist/analyze.js +2 -2
- package/dist/analyze_functions/process_functions.js +84 -64
- package/dist/famix2puml.js +126 -0
- package/dist/famix_functions/EntityDictionary.js +865 -503
- package/dist/famix_functions/helpers_creation.js +1 -1
- package/dist/fqn.js +44 -11
- package/dist/getClasses-arrow-body.js +43 -0
- package/dist/lib/famix/famix_JSON_exporter.js +1 -1
- package/dist/lib/famix/famix_base_element.js +1 -1
- package/dist/lib/famix/famix_repository.js +57 -2
- package/dist/lib/famix/index.js +1 -1
- package/dist/lib/famix/model/famix/access.js +1 -1
- package/dist/lib/famix/model/famix/accessor.js +1 -1
- package/dist/lib/famix/model/famix/alias.js +1 -1
- package/dist/lib/famix/model/famix/arrow_function.js +1 -1
- package/dist/lib/famix/model/famix/behavioral_entity.js +1 -1
- package/dist/lib/famix/model/famix/class.js +1 -1
- package/dist/lib/famix/model/famix/comment.js +1 -1
- package/dist/lib/famix/model/famix/concretisation.js +1 -1
- package/dist/lib/famix/model/famix/container_entity.js +1 -1
- package/dist/lib/famix/model/famix/decorator.js +1 -1
- package/dist/lib/famix/model/famix/entity.js +1 -1
- package/dist/lib/famix/model/famix/enum.js +1 -1
- package/dist/lib/famix/model/famix/enum_value.js +1 -1
- package/dist/lib/famix/model/famix/function.js +1 -1
- package/dist/lib/famix/model/famix/import_clause.js +1 -1
- package/dist/lib/famix/model/famix/index.js +1 -1
- package/dist/lib/famix/model/famix/indexed_file_anchor.js +1 -1
- package/dist/lib/famix/model/famix/inheritance.js +1 -1
- package/dist/lib/famix/model/famix/interface.js +1 -1
- package/dist/lib/famix/model/famix/invocation.js +1 -1
- package/dist/lib/famix/model/famix/method.js +1 -1
- package/dist/lib/famix/model/famix/module.js +1 -1
- package/dist/lib/famix/model/famix/named_entity.js +1 -1
- package/dist/lib/famix/model/famix/parameter.js +1 -1
- package/dist/lib/famix/model/famix/parameter_concretisation.js +1 -1
- package/dist/lib/famix/model/famix/parameter_type.js +1 -1
- package/dist/lib/famix/model/famix/parametric_arrow_function.js +1 -1
- package/dist/lib/famix/model/famix/parametric_class.js +1 -1
- package/dist/lib/famix/model/famix/parametric_function.js +1 -1
- package/dist/lib/famix/model/famix/parametric_interface.js +1 -1
- package/dist/lib/famix/model/famix/parametric_method.js +1 -1
- package/dist/lib/famix/model/famix/primitive_type.js +1 -1
- package/dist/lib/famix/model/famix/property.js +1 -1
- package/dist/lib/famix/model/famix/reference.js +1 -1
- package/dist/lib/famix/model/famix/scoping_entity.js +1 -1
- package/dist/lib/famix/model/famix/script_entity.js +1 -1
- package/dist/lib/famix/model/famix/source_anchor.js +1 -1
- package/dist/lib/famix/model/famix/source_language.js +1 -1
- package/dist/lib/famix/model/famix/sourced_entity.js +1 -1
- package/dist/lib/famix/model/famix/structural_entity.js +1 -1
- package/dist/lib/famix/model/famix/type.js +1 -1
- package/dist/lib/famix/model/famix/variable.js +1 -1
- package/dist/lib/famix/src/famix_JSON_exporter.js +55 -0
- package/dist/lib/famix/src/famix_base_element.js +18 -0
- package/dist/lib/famix/src/famix_repository.js +224 -0
- package/dist/lib/famix/src/index.js +31 -0
- package/dist/lib/famix/src/model/famix/access.js +40 -0
- package/dist/lib/famix/src/model/famix/accessor.js +17 -0
- package/dist/lib/famix/src/model/famix/alias.js +33 -0
- package/dist/lib/famix/src/model/famix/arrowFunction.js +17 -0
- package/dist/lib/famix/src/model/famix/arrow_function.js +17 -0
- package/dist/lib/famix/src/model/famix/behavioral_entity.js +79 -0
- package/dist/lib/famix/src/model/famix/class.js +71 -0
- package/dist/lib/famix/src/model/famix/comment.js +39 -0
- package/dist/lib/famix/src/model/famix/concretisation.js +31 -0
- package/dist/lib/famix/src/model/famix/container_entity.js +126 -0
- package/dist/lib/famix/src/model/famix/decorator.js +32 -0
- package/dist/lib/famix/src/model/famix/entity.js +17 -0
- package/dist/lib/famix/src/model/famix/enum.js +31 -0
- package/dist/lib/famix/src/model/famix/enum_value.js +25 -0
- package/dist/lib/famix/src/model/famix/function.js +17 -0
- package/dist/lib/famix/src/model/famix/implicit_variable.js +17 -0
- package/dist/lib/famix/src/model/famix/import_clause.js +41 -0
- package/dist/lib/famix/src/model/famix/index.js +86 -0
- package/dist/lib/famix/src/model/famix/indexed_file_anchor.js +38 -0
- package/dist/lib/famix/src/model/famix/inheritance.js +33 -0
- package/dist/lib/famix/src/model/famix/interface.js +64 -0
- package/dist/lib/famix/src/model/famix/invocation.js +54 -0
- package/dist/lib/famix/src/model/famix/method.js +67 -0
- package/dist/lib/famix/src/model/famix/module.js +60 -0
- package/dist/lib/famix/src/model/famix/named_entity.js +78 -0
- package/dist/lib/famix/src/model/famix/parameter.js +25 -0
- package/dist/lib/famix/src/model/famix/parameterConcretisation.js +44 -0
- package/dist/lib/famix/src/model/famix/parameter_concretisation.js +44 -0
- package/dist/lib/famix/src/model/famix/parameter_type.js +45 -0
- package/dist/lib/famix/src/model/famix/parametricArrowFunction.js +29 -0
- package/dist/lib/famix/src/model/famix/parametric_arrow_function.js +31 -0
- package/dist/lib/famix/src/model/famix/parametric_class.js +44 -0
- package/dist/lib/famix/src/model/famix/parametric_function.js +31 -0
- package/dist/lib/famix/src/model/famix/parametric_interface.js +44 -0
- package/dist/lib/famix/src/model/famix/parametric_method.js +31 -0
- package/dist/lib/famix/src/model/famix/primitive_type.js +17 -0
- package/dist/lib/famix/src/model/famix/property.js +73 -0
- package/dist/lib/famix/src/model/famix/reference.js +33 -0
- package/dist/lib/famix/src/model/famix/scoping_entity.js +36 -0
- package/dist/lib/famix/src/model/famix/script_entity.js +29 -0
- package/dist/lib/famix/src/model/famix/source_anchor.js +27 -0
- package/dist/lib/famix/src/model/famix/source_language.js +35 -0
- package/dist/lib/famix/src/model/famix/sourced_entity.js +60 -0
- package/dist/lib/famix/src/model/famix/structural_entity.js +39 -0
- package/dist/lib/famix/src/model/famix/text_anchor.js +38 -0
- package/dist/lib/famix/src/model/famix/type.js +73 -0
- package/dist/lib/famix/src/model/famix/variable.js +24 -0
- package/dist/lib/ts-complex/cyclomatic-service.js +1 -1
- package/dist/refactorer/refactor-getter-setter.js +1 -1
- package/dist/ts2famix-cli-wrapper.js +1 -1
- package/dist/ts2famix-cli.js +1 -1
- package/doc-uml/famix-typescript-model.puml +607 -607
- package/eslint.config.mjs +28 -0
- package/fqn-model.json +1 -0
- package/iterateGenericTypes.ts +69 -0
- package/out/class-diagram/class-diagram.svg +1 -0
- package/package.json +70 -50
- package/sample.json +1 -0
- package/sample.ts +1 -0
- package/src/analyze.ts +120 -120
- package/src/analyze_functions/process_functions.ts +1040 -1019
- package/src/famix_functions/EntityDictionary.ts +2016 -1593
- package/src/famix_functions/helpers_creation.ts +135 -135
- package/src/fqn.ts +50 -16
- package/src/generate_uml.sh +20 -20
- package/src/lib/famix/License.md +22 -22
- package/src/lib/famix/famix_JSON_exporter.ts +56 -56
- package/src/lib/famix/famix_base_element.ts +22 -22
- package/src/lib/famix/famix_repository.ts +278 -243
- package/src/lib/famix/index.ts +8 -8
- package/src/lib/famix/model/famix/access.ts +50 -50
- package/src/lib/famix/model/famix/accessor.ts +15 -15
- package/src/lib/famix/model/famix/alias.ts +39 -39
- package/src/lib/famix/model/famix/arrow_function.ts +15 -15
- package/src/lib/famix/model/famix/behavioral_entity.ts +97 -97
- package/src/lib/famix/model/famix/class.ts +85 -85
- package/src/lib/famix/model/famix/comment.ts +47 -47
- package/src/lib/famix/model/famix/concretisation.ts +40 -40
- package/src/lib/famix/model/famix/container_entity.ts +160 -160
- package/src/lib/famix/model/famix/decorator.ts +37 -37
- package/src/lib/famix/model/famix/entity.ts +15 -15
- package/src/lib/famix/model/famix/enum.ts +30 -30
- package/src/lib/famix/model/famix/enum_value.ts +28 -28
- package/src/lib/famix/model/famix/function.ts +15 -15
- package/src/lib/famix/model/famix/import_clause.ts +51 -51
- package/src/lib/famix/model/famix/index.ts +41 -41
- package/src/lib/famix/model/famix/indexed_file_anchor.ts +46 -46
- package/src/lib/famix/model/famix/inheritance.ts +40 -40
- package/src/lib/famix/model/famix/interface.ts +75 -75
- package/src/lib/famix/model/famix/invocation.ts +65 -65
- package/src/lib/famix/model/famix/method.ts +89 -89
- package/src/lib/famix/model/famix/module.ts +71 -71
- package/src/lib/famix/model/famix/named_entity.ts +95 -95
- package/src/lib/famix/model/famix/parameter.ts +28 -28
- package/src/lib/famix/model/famix/parameter_concretisation.ts +51 -51
- package/src/lib/famix/model/famix/parameter_type.ts +58 -58
- package/src/lib/famix/model/famix/parametric_arrow_function.ts +32 -32
- package/src/lib/famix/model/famix/parametric_class.ts +49 -49
- package/src/lib/famix/model/famix/parametric_function.ts +32 -32
- package/src/lib/famix/model/famix/parametric_interface.ts +49 -49
- package/src/lib/famix/model/famix/parametric_method.ts +32 -32
- package/src/lib/famix/model/famix/primitive_type.ts +15 -15
- package/src/lib/famix/model/famix/property.ts +94 -94
- package/src/lib/famix/model/famix/reference.ts +40 -40
- package/src/lib/famix/model/famix/scoping_entity.ts +35 -35
- package/src/lib/famix/model/famix/script_entity.ts +34 -34
- package/src/lib/famix/model/famix/source_anchor.ts +30 -30
- package/src/lib/famix/model/famix/source_language.ts +35 -35
- package/src/lib/famix/model/famix/sourced_entity.ts +70 -70
- package/src/lib/famix/model/famix/structural_entity.ts +43 -43
- package/src/lib/famix/model/famix/type.ts +87 -87
- package/src/lib/famix/model/famix/variable.ts +27 -27
- package/src/lib/famix/package.json +28 -28
- package/src/lib/ts-complex/cyclomatic-service.ts +83 -83
- package/src/refactorer/refactor-getter-setter.ts +140 -140
- package/src/ts2famix-cli-wrapper.ts +21 -21
- package/src/ts2famix-cli.ts +60 -60
- package/stats.txt +3091 -0
- package/tabby-debug-output.txt +19433 -0
- package/ts2famix.log +22656 -0
- package/tsconfig.check-tests.json +14 -14
- package/tsconfig.json +72 -72
- package/validate-references.js +103 -0
package/arwea-fix.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"FM3":"FamixTypeScript.SourceLanguage","id":1,"sourcedEntities":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2,"element":{"ref":3},"startPos":1,"endPos":252,"fileName":"src/main.ts"},{"FM3":"FamixTypeScript.Module","id":3,"sourceAnchor":{"ref":2},"comments":[],"incomingImports":[],"name":"main.ts","decorators":[],"types":[{"ref":5},{"ref":9}],"functions":[{"ref":7}],"localVariables":[],"outgoingImports":[{"ref":1573},{"ref":1576},{"ref":1579}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":4,"element":{"ref":5},"startPos":218,"endPos":247,"fileName":"src/main.ts"},{"FM3":"FamixTypeScript.PrimitiveType","id":5,"isStub":true,"sourceAnchor":{"ref":4},"comments":[],"incomingImports":[],"name":"void","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":3},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":6,"element":{"ref":7},"startPos":218,"endPos":247,"fileName":"src/main.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":7,"sourceAnchor":{"ref":6},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":1,"types":[],"functions":[],"localVariables":[],"signature":"(err) => void","parameters":[{"ref":11}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":8,"element":{"ref":9},"startPos":219,"endPos":222,"fileName":"src/main.ts"},{"FM3":"FamixTypeScript.PrimitiveType","id":9,"isStub":true,"sourceAnchor":{"ref":8},"comments":[],"incomingImports":[],"name":"any","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":3},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":10,"element":{"ref":11},"startPos":219,"endPos":222,"fileName":"src/main.ts"},{"FM3":"FamixTypeScript.Parameter","id":11,"sourceAnchor":{"ref":10},"comments":[],"incomingImports":[],"name":"err","decorators":[],"incomingAccesses":[{"ref":2586}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":7}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":12,"element":{"ref":13},"startPos":1,"endPos":414,"fileName":"src/app/app.component.ts"},{"FM3":"FamixTypeScript.Module","id":13,"sourceAnchor":{"ref":12},"comments":[],"incomingImports":[],"name":"app.component.ts","decorators":[],"types":[{"ref":15}],"functions":[],"localVariables":[],"outgoingImports":[{"ref":1583},{"ref":1586},{"ref":1590},{"ref":1593}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":14,"element":{"ref":15},"startPos":225,"endPos":413,"fileName":"src/app/app.component.ts"},{"FM3":"FamixTypeScript.Class","id":15,"sourceAnchor":{"ref":14},"comments":[],"incomingImports":[],"name":"AppComponent","decorators":[{"ref":17}],"types":[],"functions":[],"localVariables":[],"incomingReferences":[],"isAbstract":false,"attributes":[],"methods":[],"superInheritances":[],"subInheritances":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":16,"element":{"ref":17},"startPos":225,"endPos":384,"fileName":"src/app/app.component.ts"},{"FM3":"FamixTypeScript.Decorator","id":17,"sourceAnchor":{"ref":16},"comments":[],"incomingImports":[],"name":"@Component","decorators":[],"expression":"Component({\n selector: \"app-root\",\n templateUrl: \"./app.component.html\",\n standalone: true,\n imports: [HeaderComponent, RouterOutlet, FooterComponent],\n})","decoratedEntity":{"ref":15}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":18,"element":{"ref":19},"startPos":1,"endPos":1105,"fileName":"src/app/app.config.ts"},{"FM3":"FamixTypeScript.Module","id":19,"sourceAnchor":{"ref":18},"comments":[],"incomingImports":[],"name":"app.config.ts","decorators":[],"types":[{"ref":21},{"ref":25}],"functions":[{"ref":27},{"ref":39}],"localVariables":[{"ref":23}],"outgoingImports":[{"ref":1597},{"ref":1601},{"ref":1605},{"ref":1608},{"ref":1612},{"ref":1616},{"ref":1619},{"ref":1622},{"ref":1625},{"ref":1628},{"ref":1631},{"ref":1635}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":20,"element":{"ref":21},"startPos":783,"endPos":1103,"fileName":"src/app/app.config.ts"},{"FM3":"FamixTypeScript.Type","id":21,"sourceAnchor":{"ref":20},"comments":[],"incomingImports":[],"name":"ApplicationConfig","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":19},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":22,"element":{"ref":23},"startPos":783,"endPos":1103,"fileName":"src/app/app.config.ts"},{"FM3":"FamixTypeScript.Variable","id":23,"sourceAnchor":{"ref":22},"comments":[],"incomingImports":[],"name":"appConfig","decorators":[],"incomingAccesses":[{"ref":2587}],"declaredType":{"ref":21},"parentBehaviouralEntity":{"ref":19}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":24,"element":{"ref":25},"startPos":611,"endPos":768,"fileName":"src/app/app.config.ts"},{"FM3":"FamixTypeScript.Type","id":25,"sourceAnchor":{"ref":24},"comments":[],"incomingImports":[],"name":"() => any","decorators":[],"types":[{"ref":29},{"ref":33}],"functions":[],"localVariables":[],"typeContainer":{"ref":19},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":26,"element":{"ref":27},"startPos":611,"endPos":768,"fileName":"src/app/app.config.ts"},{"FM3":"FamixTypeScript.Function","id":27,"sourceAnchor":{"ref":26},"comments":[],"incomingImports":[],"name":"initAuth","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":1,"numberOfLinesOfCode":2,"types":[],"functions":[{"ref":37}],"localVariables":[],"signature":"export function initAuth(jwtService: JwtService, userService: UserService)","parameters":[{"ref":31},{"ref":35}],"numberOfParameters":2,"incomingInvocations":[{"ref":2876}],"declaredType":{"ref":25}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":28,"element":{"ref":29},"startPos":636,"endPos":658,"fileName":"src/app/app.config.ts"},{"FM3":"FamixTypeScript.Type","id":29,"sourceAnchor":{"ref":28},"comments":[],"incomingImports":[],"name":"import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/core/auth/services/jwt.service\").JwtService","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":25},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":30,"element":{"ref":31},"startPos":636,"endPos":658,"fileName":"src/app/app.config.ts"},{"FM3":"FamixTypeScript.Parameter","id":31,"sourceAnchor":{"ref":30},"comments":[],"incomingImports":[],"name":"jwtService","decorators":[],"incomingAccesses":[],"declaredType":{"ref":29},"parentBehaviouralEntity":{"ref":27}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":32,"element":{"ref":33},"startPos":660,"endPos":684,"fileName":"src/app/app.config.ts"},{"FM3":"FamixTypeScript.Type","id":33,"sourceAnchor":{"ref":32},"comments":[],"incomingImports":[],"name":"import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/core/auth/services/user.service\").UserService","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":25},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":34,"element":{"ref":35},"startPos":660,"endPos":684,"fileName":"src/app/app.config.ts"},{"FM3":"FamixTypeScript.Parameter","id":35,"sourceAnchor":{"ref":34},"comments":[],"incomingImports":[],"name":"userService","decorators":[],"incomingAccesses":[],"declaredType":{"ref":33},"parentBehaviouralEntity":{"ref":27}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":36,"element":{"ref":37},"startPos":697,"endPos":765,"fileName":"src/app/app.config.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":37,"sourceAnchor":{"ref":36},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"() => any","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":38,"element":{"ref":39},"startPos":697,"endPos":765,"fileName":"src/app/app.config.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":39,"sourceAnchor":{"ref":38},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"() => any","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":40,"element":{"ref":41},"startPos":1,"endPos":1576,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.Module","id":41,"sourceAnchor":{"ref":40},"comments":[],"incomingImports":[],"name":"app.routes.ts","decorators":[],"types":[{"ref":43},{"ref":47},{"ref":49},{"ref":51},{"ref":55},{"ref":57},{"ref":63},{"ref":85},{"ref":87},{"ref":93},{"ref":95},{"ref":99},{"ref":101},{"ref":111},{"ref":113}],"functions":[{"ref":53},{"ref":59},{"ref":61},{"ref":69},{"ref":73},{"ref":75},{"ref":81},{"ref":89},{"ref":91},{"ref":97},{"ref":103},{"ref":105},{"ref":107},{"ref":109},{"ref":115}],"localVariables":[{"ref":45}],"outgoingImports":[{"ref":1639},{"ref":1643},{"ref":1644},{"ref":1648}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":42,"element":{"ref":43},"startPos":200,"endPos":1574,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.Type","id":43,"sourceAnchor":{"ref":42},"comments":[],"incomingImports":[],"name":"Routes","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":41},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":44,"element":{"ref":45},"startPos":200,"endPos":1574,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.Variable","id":45,"sourceAnchor":{"ref":44},"comments":[],"incomingImports":[],"name":"routes","decorators":[],"incomingAccesses":[{"ref":2588}],"declaredType":{"ref":43},"parentBehaviouralEntity":{"ref":41}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":46,"element":{"ref":47},"startPos":256,"endPos":316,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.Type","id":47,"sourceAnchor":{"ref":46},"comments":[],"incomingImports":[],"name":"typeof import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/article/pages/home/home.component\")","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":41},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":48,"element":{"ref":49},"startPos":256,"endPos":316,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.Type","id":49,"sourceAnchor":{"ref":48},"comments":[],"incomingImports":[],"name":"Promise","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":41},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":50,"element":{"ref":51},"startPos":256,"endPos":316,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.ParameterType","id":51,"sourceAnchor":{"ref":50},"comments":[],"incomingImports":[],"name":"Promise<typeof import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/article/pages/home/home.component\")>","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":41},"incomingReferences":[],"baseType":{"ref":49},"arguments":[{"ref":47}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":52,"element":{"ref":53},"startPos":256,"endPos":316,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":53,"sourceAnchor":{"ref":52},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"() => Promise<typeof import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/article/pages/home/home.component\")>","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":51}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":54,"element":{"ref":55},"startPos":365,"endPos":407,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.Type","id":55,"sourceAnchor":{"ref":54},"comments":[],"incomingImports":[],"name":"typeof import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/core/auth/auth.component\")","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":41},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":56,"element":{"ref":57},"startPos":365,"endPos":407,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.ParameterType","id":57,"sourceAnchor":{"ref":56},"comments":[],"incomingImports":[],"name":"Promise<typeof import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/core/auth/auth.component\")>","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":41},"incomingReferences":[],"baseType":{"ref":49},"arguments":[{"ref":55}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":58,"element":{"ref":59},"startPos":365,"endPos":407,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":59,"sourceAnchor":{"ref":58},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"() => Promise<typeof import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/core/auth/auth.component\")>","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":57}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":60,"element":{"ref":61},"startPos":434,"endPos":506,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":61,"sourceAnchor":{"ref":60},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[{"ref":65}],"localVariables":[],"signature":"() => any","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":62,"element":{"ref":63},"startPos":485,"endPos":504,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.PrimitiveType","id":63,"isStub":true,"sourceAnchor":{"ref":62},"comments":[],"incomingImports":[],"name":"boolean","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":41},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":64,"element":{"ref":65},"startPos":485,"endPos":504,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":65,"sourceAnchor":{"ref":64},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(isAuth) => boolean","parameters":[{"ref":67}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":63}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":66,"element":{"ref":67},"startPos":486,"endPos":492,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.Parameter","id":67,"sourceAnchor":{"ref":66},"comments":[],"incomingImports":[],"name":"isAuth","decorators":[],"incomingAccesses":[{"ref":2589}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":65}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":68,"element":{"ref":69},"startPos":485,"endPos":504,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":69,"sourceAnchor":{"ref":68},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(isAuth) => boolean","parameters":[{"ref":71}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":63}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":70,"element":{"ref":71},"startPos":486,"endPos":492,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.Parameter","id":71,"sourceAnchor":{"ref":70},"comments":[],"incomingImports":[],"name":"isAuth","decorators":[],"incomingAccesses":[{"ref":2590}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":69}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":72,"element":{"ref":73},"startPos":565,"endPos":607,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":73,"sourceAnchor":{"ref":72},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"() => Promise<typeof import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/core/auth/auth.component\")>","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":57}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":74,"element":{"ref":75},"startPos":634,"endPos":706,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":75,"sourceAnchor":{"ref":74},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[{"ref":77}],"localVariables":[],"signature":"() => any","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":76,"element":{"ref":77},"startPos":685,"endPos":704,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":77,"sourceAnchor":{"ref":76},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(isAuth) => boolean","parameters":[{"ref":79}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":63}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":78,"element":{"ref":79},"startPos":686,"endPos":692,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.Parameter","id":79,"sourceAnchor":{"ref":78},"comments":[],"incomingImports":[],"name":"isAuth","decorators":[],"incomingAccesses":[{"ref":2591}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":77}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":80,"element":{"ref":81},"startPos":685,"endPos":704,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":81,"sourceAnchor":{"ref":80},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(isAuth) => boolean","parameters":[{"ref":83}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":63}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":82,"element":{"ref":83},"startPos":686,"endPos":692,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.Parameter","id":83,"sourceAnchor":{"ref":82},"comments":[],"incomingImports":[],"name":"isAuth","decorators":[],"incomingAccesses":[{"ref":2592}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":81}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":84,"element":{"ref":85},"startPos":765,"endPos":819,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.Type","id":85,"sourceAnchor":{"ref":84},"comments":[],"incomingImports":[],"name":"typeof import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/settings/settings.component\")","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":41},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":86,"element":{"ref":87},"startPos":765,"endPos":819,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.ParameterType","id":87,"sourceAnchor":{"ref":86},"comments":[],"incomingImports":[],"name":"Promise<typeof import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/settings/settings.component\")>","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":41},"incomingReferences":[],"baseType":{"ref":49},"arguments":[{"ref":85}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":88,"element":{"ref":89},"startPos":765,"endPos":819,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":89,"sourceAnchor":{"ref":88},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"() => Promise<typeof import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/settings/settings.component\")>","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":87}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":90,"element":{"ref":91},"startPos":839,"endPos":880,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":91,"sourceAnchor":{"ref":90},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"() => any","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":92,"element":{"ref":93},"startPos":931,"endPos":980,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.Type","id":93,"sourceAnchor":{"ref":92},"comments":[],"incomingImports":[],"name":"typeof import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/profile/profile.routes\")","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":41},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":94,"element":{"ref":95},"startPos":931,"endPos":980,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.ParameterType","id":95,"sourceAnchor":{"ref":94},"comments":[],"incomingImports":[],"name":"Promise<typeof import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/profile/profile.routes\")>","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":41},"incomingReferences":[],"baseType":{"ref":49},"arguments":[{"ref":93}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":96,"element":{"ref":97},"startPos":931,"endPos":980,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":97,"sourceAnchor":{"ref":96},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"() => Promise<typeof import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/profile/profile.routes\")>","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":95}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":98,"element":{"ref":99},"startPos":1076,"endPos":1150,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.Type","id":99,"sourceAnchor":{"ref":98},"comments":[],"incomingImports":[],"name":"typeof import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/article/pages/editor/editor.component\")","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":41},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":100,"element":{"ref":101},"startPos":1076,"endPos":1150,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.ParameterType","id":101,"sourceAnchor":{"ref":100},"comments":[],"incomingImports":[],"name":"Promise<typeof import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/article/pages/editor/editor.component\")>","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":41},"incomingReferences":[],"baseType":{"ref":49},"arguments":[{"ref":99}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":102,"element":{"ref":103},"startPos":1076,"endPos":1150,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":103,"sourceAnchor":{"ref":102},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":1,"types":[],"functions":[],"localVariables":[],"signature":"() => Promise<typeof import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/article/pages/editor/editor.component\")>","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":101}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":104,"element":{"ref":105},"startPos":1174,"endPos":1215,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":105,"sourceAnchor":{"ref":104},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"() => any","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":106,"element":{"ref":107},"startPos":1281,"endPos":1355,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":107,"sourceAnchor":{"ref":106},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":1,"types":[],"functions":[],"localVariables":[],"signature":"() => Promise<typeof import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/article/pages/editor/editor.component\")>","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":101}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":108,"element":{"ref":109},"startPos":1379,"endPos":1420,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":109,"sourceAnchor":{"ref":108},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"() => any","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":110,"element":{"ref":111},"startPos":1494,"endPos":1566,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.Type","id":111,"sourceAnchor":{"ref":110},"comments":[],"incomingImports":[],"name":"typeof import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/article/pages/article/article.component\")","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":41},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":112,"element":{"ref":113},"startPos":1494,"endPos":1566,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.ParameterType","id":113,"sourceAnchor":{"ref":112},"comments":[],"incomingImports":[],"name":"Promise<typeof import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/article/pages/article/article.component\")>","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":41},"incomingReferences":[],"baseType":{"ref":49},"arguments":[{"ref":111}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":114,"element":{"ref":115},"startPos":1494,"endPos":1566,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":115,"sourceAnchor":{"ref":114},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":1,"types":[],"functions":[],"localVariables":[],"signature":"() => Promise<typeof import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/article/pages/article/article.component\")>","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":113}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":116,"element":{"ref":117},"startPos":1,"endPos":2550,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.Module","id":117,"sourceAnchor":{"ref":116},"comments":[],"incomingImports":[],"name":"auth.component.ts","decorators":[],"types":[{"ref":119},{"ref":179}],"functions":[{"ref":191},{"ref":193}],"localVariables":[],"outgoingImports":[{"ref":1652},{"ref":1656},{"ref":1660},{"ref":1664},{"ref":1668},{"ref":1672},{"ref":1676},{"ref":1680},{"ref":1684},{"ref":1688},{"ref":1692},{"ref":1696},{"ref":1699},{"ref":1702},{"ref":1703},{"ref":1707}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":118,"element":{"ref":119},"startPos":657,"endPos":2549,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.Class","id":119,"sourceAnchor":{"ref":118},"comments":[],"incomingImports":[],"name":"AuthComponent","decorators":[{"ref":121}],"types":[{"ref":123},{"ref":129},{"ref":135},{"ref":137},{"ref":139},{"ref":160}],"functions":[],"localVariables":[],"incomingReferences":[],"isAbstract":false,"attributes":[{"ref":125},{"ref":127},{"ref":131},{"ref":133},{"ref":141},{"ref":143},{"ref":167},{"ref":173},{"ref":177}],"methods":[{"ref":144},{"ref":146},{"ref":158}],"superInheritances":[{"ref":2918}],"subInheritances":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":120,"element":{"ref":121},"startPos":657,"endPos":834,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.Decorator","id":121,"sourceAnchor":{"ref":120},"comments":[],"incomingImports":[],"name":"@Component","decorators":[],"expression":"Component({\n selector: \"app-auth-page\",\n templateUrl: \"./auth.component.html\",\n imports: [RouterLink, NgIf, ListErrorsComponent, ReactiveFormsModule],\n standalone: true,\n})","decoratedEntity":{"ref":119}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":122,"element":{"ref":123},"startPos":892,"endPos":906,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.PrimitiveType","id":123,"isStub":true,"sourceAnchor":{"ref":122},"comments":[],"incomingImports":[],"name":"string","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":119},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":124,"element":{"ref":125},"startPos":892,"endPos":906,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.Property","id":125,"sourceAnchor":{"ref":124},"comments":[],"incomingImports":[],"name":"authType","decorators":[],"incomingAccesses":[{"ref":2593},{"ref":2594}],"declaredType":{"ref":123},"readOnly":false,"isClassSide":false,"parentType":{"ref":119},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":126,"element":{"ref":127},"startPos":909,"endPos":920,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.Property","id":127,"sourceAnchor":{"ref":126},"comments":[],"incomingImports":[],"name":"title","decorators":[],"incomingAccesses":[{"ref":2595}],"declaredType":{"ref":123},"readOnly":false,"isClassSide":false,"parentType":{"ref":119},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":128,"element":{"ref":129},"startPos":923,"endPos":955,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.Type","id":129,"sourceAnchor":{"ref":128},"comments":[],"incomingImports":[],"name":"import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/core/models/errors.model\").Errors","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":119},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":130,"element":{"ref":131},"startPos":923,"endPos":955,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.Property","id":131,"sourceAnchor":{"ref":130},"comments":[],"incomingImports":[],"name":"errors","decorators":[],"incomingAccesses":[{"ref":2596}],"declaredType":{"ref":129},"readOnly":false,"isClassSide":false,"parentType":{"ref":119},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":132,"element":{"ref":133},"startPos":958,"endPos":979,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.Property","id":133,"sourceAnchor":{"ref":132},"comments":[],"incomingImports":[],"name":"isSubmitting","decorators":[],"incomingAccesses":[{"ref":2597}],"declaredType":{"ref":63},"readOnly":false,"isClassSide":false,"parentType":{"ref":119},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":134,"element":{"ref":135},"startPos":982,"endPos":1012,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.Type","id":135,"sourceAnchor":{"ref":134},"comments":[],"incomingImports":[],"name":"AuthForm","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":119},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":136,"element":{"ref":137},"startPos":982,"endPos":1012,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.Type","id":137,"sourceAnchor":{"ref":136},"comments":[],"incomingImports":[],"name":"FormGroup","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":119},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":138,"element":{"ref":139},"startPos":982,"endPos":1012,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.ParameterType","id":139,"sourceAnchor":{"ref":138},"comments":[],"incomingImports":[],"name":"FormGroup<AuthForm>","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":119},"incomingReferences":[],"baseType":{"ref":137},"arguments":[{"ref":135}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":140,"element":{"ref":141},"startPos":982,"endPos":1012,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.Property","id":141,"sourceAnchor":{"ref":140},"comments":[],"incomingImports":[],"name":"authForm","decorators":[],"incomingAccesses":[{"ref":2598},{"ref":2599},{"ref":2600}],"declaredType":{"ref":139},"readOnly":false,"isClassSide":false,"parentType":{"ref":119},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":142,"element":{"ref":143},"startPos":1015,"endPos":1047,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.Property","id":143,"sourceAnchor":{"ref":142},"comments":[],"incomingImports":[],"name":"destroyRef","decorators":[],"incomingAccesses":[{"ref":2601}],"declaredType":{"ref":9},"readOnly":false,"isClassSide":false,"parentType":{"ref":119},"visibility":""},{"FM3":"FamixTypeScript.Method","id":144,"sourceAnchor":{"ref":145},"comments":[],"incomingImports":[],"name":"ngOnInit","decorators":[],"cyclomaticComplexity":3,"numberOfStatements":3,"numberOfLinesOfCode":12,"types":[],"functions":[],"localVariables":[],"signature":"ngOnInit(): void","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":5},"parentType":{"ref":119},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":145,"element":{"ref":144},"startPos":1492,"endPos":1863,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.Method","id":146,"sourceAnchor":{"ref":147},"comments":[],"incomingImports":[],"name":"submitForm","decorators":[],"cyclomaticComplexity":2,"numberOfStatements":4,"numberOfLinesOfCode":24,"types":[{"ref":151}],"functions":[{"ref":153},{"ref":155}],"localVariables":[{"ref":149}],"signature":"submitForm(): void","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":5},"parentType":{"ref":119},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":147,"element":{"ref":146},"startPos":1867,"endPos":2547,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":148,"element":{"ref":149},"startPos":1961,"endPos":2317,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.Variable","id":149,"sourceAnchor":{"ref":148},"comments":[],"incomingImports":[],"name":"observable","decorators":[],"incomingAccesses":[{"ref":2602}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":146}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":150,"element":{"ref":151},"startPos":2401,"endPos":2439,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.PrimitiveType","id":151,"isStub":true,"sourceAnchor":{"ref":150},"comments":[],"incomingImports":[],"name":"undefined","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":146},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":152,"element":{"ref":153},"startPos":2401,"endPos":2439,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":153,"sourceAnchor":{"ref":152},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"() => undefined","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":151}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":154,"element":{"ref":155},"startPos":2454,"endPos":2534,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":155,"sourceAnchor":{"ref":154},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":2,"numberOfLinesOfCode":3,"types":[],"functions":[],"localVariables":[],"signature":"(err) => void","parameters":[{"ref":157}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":156,"element":{"ref":157},"startPos":2455,"endPos":2458,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":157,"sourceAnchor":{"ref":156},"comments":[],"incomingImports":[],"name":"err","decorators":[],"incomingAccesses":[{"ref":2603}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":155}},{"FM3":"FamixTypeScript.Method","id":158,"sourceAnchor":{"ref":161},"comments":[],"incomingImports":[],"name":"constructor","decorators":[],"numberOfStatements":1,"numberOfLinesOfCode":15,"types":[{"ref":163},{"ref":169}],"functions":[],"localVariables":[],"signature":"constructor(\n private readonly route: ActivatedRoute,\n private readonly router: Router,\n private readonly userService: UserService,\n )","parameters":[{"ref":165},{"ref":171},{"ref":175}],"numberOfParameters":3,"incomingInvocations":[],"declaredType":{"ref":160},"parentType":{"ref":119},"kind":"constructor","isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":159,"element":{"ref":160},"startPos":1051,"endPos":1488,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.Type","id":160,"sourceAnchor":{"ref":159},"comments":[],"incomingImports":[],"name":"import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/core/auth/auth.component\").default","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":119},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":161,"element":{"ref":158},"startPos":1051,"endPos":1488,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":162,"element":{"ref":163},"startPos":1068,"endPos":1106,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.Type","id":163,"sourceAnchor":{"ref":162},"comments":[],"incomingImports":[],"name":"ActivatedRoute","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":158},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":164,"element":{"ref":165},"startPos":1068,"endPos":1106,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":165,"sourceAnchor":{"ref":164},"comments":[],"incomingImports":[],"name":"route","decorators":[],"incomingAccesses":[{"ref":2604}],"declaredType":{"ref":163},"parentBehaviouralEntity":{"ref":158}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":166,"element":{"ref":167},"startPos":2553,"endPos":2592,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.Property","id":167,"sourceAnchor":{"ref":166},"comments":[],"incomingImports":[],"name":"route","decorators":[],"incomingAccesses":[],"declaredType":{"ref":163},"readOnly":true,"isClassSide":false,"parentType":{"ref":119},"visibility":"private"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":168,"element":{"ref":169},"startPos":1112,"endPos":1143,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.Type","id":169,"sourceAnchor":{"ref":168},"comments":[],"incomingImports":[],"name":"Router","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":158},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":170,"element":{"ref":171},"startPos":1112,"endPos":1143,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":171,"sourceAnchor":{"ref":170},"comments":[],"incomingImports":[],"name":"router","decorators":[],"incomingAccesses":[{"ref":2605}],"declaredType":{"ref":169},"parentBehaviouralEntity":{"ref":158}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":172,"element":{"ref":173},"startPos":2553,"endPos":2585,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.Property","id":173,"sourceAnchor":{"ref":172},"comments":[],"incomingImports":[],"name":"router","decorators":[],"incomingAccesses":[],"declaredType":{"ref":169},"readOnly":true,"isClassSide":false,"parentType":{"ref":119},"visibility":"private"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":174,"element":{"ref":175},"startPos":1149,"endPos":1190,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":175,"sourceAnchor":{"ref":174},"comments":[],"incomingImports":[],"name":"userService","decorators":[],"incomingAccesses":[{"ref":2606}],"declaredType":{"ref":33},"parentBehaviouralEntity":{"ref":158}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":176,"element":{"ref":177},"startPos":2553,"endPos":2595,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.Property","id":177,"sourceAnchor":{"ref":176},"comments":[],"incomingImports":[],"name":"userService","decorators":[],"incomingAccesses":[],"declaredType":{"ref":33},"readOnly":true,"isClassSide":false,"parentType":{"ref":119},"visibility":"private"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":178,"element":{"ref":179},"startPos":536,"endPos":655,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.Interface","id":179,"sourceAnchor":{"ref":178},"comments":[],"incomingImports":[],"name":"AuthForm","decorators":[],"types":[{"ref":181},{"ref":183}],"functions":[],"localVariables":[],"incomingReferences":[],"attributes":[{"ref":185},{"ref":187},{"ref":189}],"methods":[],"superInheritances":[],"subInheritances":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":180,"element":{"ref":181},"startPos":559,"endPos":586,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.Type","id":181,"sourceAnchor":{"ref":180},"comments":[],"incomingImports":[],"name":"FormControl","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":179},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":182,"element":{"ref":183},"startPos":559,"endPos":586,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.ParameterType","id":183,"sourceAnchor":{"ref":182},"comments":[],"incomingImports":[],"name":"FormControl<string>","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":179},"incomingReferences":[],"baseType":{"ref":181},"arguments":[{"ref":123}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":184,"element":{"ref":185},"startPos":559,"endPos":586,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.Property","id":185,"sourceAnchor":{"ref":184},"comments":[],"incomingImports":[],"name":"email","decorators":[],"incomingAccesses":[],"declaredType":{"ref":183},"readOnly":false,"isClassSide":false,"parentType":{"ref":179},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":186,"element":{"ref":187},"startPos":589,"endPos":619,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.Property","id":187,"sourceAnchor":{"ref":186},"comments":[],"incomingImports":[],"name":"password","decorators":[],"incomingAccesses":[],"declaredType":{"ref":183},"readOnly":false,"isClassSide":false,"parentType":{"ref":179},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":188,"element":{"ref":189},"startPos":622,"endPos":653,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.Property","id":189,"sourceAnchor":{"ref":188},"comments":[],"incomingImports":[],"name":"username","decorators":[],"incomingAccesses":[],"declaredType":{"ref":9},"readOnly":false,"isClassSide":false,"parentType":{"ref":179},"visibility":"","isOptional":true},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":190,"element":{"ref":191},"startPos":2401,"endPos":2439,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":191,"sourceAnchor":{"ref":190},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"() => undefined","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":151}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":192,"element":{"ref":193},"startPos":2454,"endPos":2534,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":193,"sourceAnchor":{"ref":192},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":2,"numberOfLinesOfCode":3,"types":[],"functions":[],"localVariables":[],"signature":"(err) => void","parameters":[{"ref":195}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":194,"element":{"ref":195},"startPos":2455,"endPos":2458,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":195,"sourceAnchor":{"ref":194},"comments":[],"incomingImports":[],"name":"err","decorators":[],"incomingAccesses":[{"ref":2607}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":193}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":196,"element":{"ref":197},"startPos":1,"endPos":1275,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.Module","id":197,"sourceAnchor":{"ref":196},"comments":[],"incomingImports":[],"name":"if-authenticated.directive.ts","decorators":[],"types":[{"ref":199}],"functions":[{"ref":253}],"localVariables":[],"outgoingImports":[{"ref":1711},{"ref":1715},{"ref":1719},{"ref":1723},{"ref":1727},{"ref":1731},{"ref":1735},{"ref":1736},{"ref":1740}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":198,"element":{"ref":199},"startPos":246,"endPos":1274,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.ParametricClass","id":199,"sourceAnchor":{"ref":198},"comments":[],"incomingImports":[],"name":"IfAuthenticatedDirective","decorators":[{"ref":201}],"types":[{"ref":222},{"ref":224},{"ref":226}],"functions":[],"localVariables":[],"incomingReferences":[],"isAbstract":false,"attributes":[{"ref":205},{"ref":207},{"ref":209},{"ref":235},{"ref":239},{"ref":245}],"methods":[{"ref":210},{"ref":220},{"ref":246}],"superInheritances":[{"ref":2921}],"subInheritances":[],"genericParameters":[{"ref":203}],"concreteParameters":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":200,"element":{"ref":201},"startPos":246,"endPos":314,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.Decorator","id":201,"sourceAnchor":{"ref":200},"comments":[],"incomingImports":[],"name":"@Directive","decorators":[],"expression":"Directive({\n selector: \"[ifAuthenticated]\",\n standalone: true,\n})","decoratedEntity":{"ref":199}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":202,"element":{"ref":203},"startPos":353,"endPos":354,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.ParameterType","id":203,"sourceAnchor":{"ref":202},"comments":[],"incomingImports":[],"name":"T","decorators":[],"types":[],"functions":[],"localVariables":[],"incomingReferences":[],"parentGeneric":{"ref":199},"arguments":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":204,"element":{"ref":205},"startPos":378,"endPos":410,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.Property","id":205,"sourceAnchor":{"ref":204},"comments":[],"incomingImports":[],"name":"destroyRef","decorators":[],"incomingAccesses":[{"ref":2608}],"declaredType":{"ref":9},"readOnly":false,"isClassSide":false,"parentType":{"ref":199},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":206,"element":{"ref":207},"startPos":560,"endPos":587,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.Property","id":207,"sourceAnchor":{"ref":206},"comments":[],"incomingImports":[],"name":"condition","decorators":[],"incomingAccesses":[{"ref":2609},{"ref":2610}],"declaredType":{"ref":63},"readOnly":false,"isClassSide":false,"parentType":{"ref":199},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":208,"element":{"ref":209},"startPos":590,"endPos":606,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.Property","id":209,"sourceAnchor":{"ref":208},"comments":[],"incomingImports":[],"name":"hasView","decorators":[],"incomingAccesses":[{"ref":2611}],"declaredType":{"ref":63},"readOnly":false,"isClassSide":false,"parentType":{"ref":199},"visibility":""},{"FM3":"FamixTypeScript.Method","id":210,"sourceAnchor":{"ref":211},"comments":[],"incomingImports":[],"name":"ngOnInit","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":1,"numberOfLinesOfCode":15,"types":[],"functions":[{"ref":213}],"localVariables":[],"signature":"ngOnInit()","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":5},"parentType":{"ref":199},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":211,"element":{"ref":210},"startPos":610,"endPos":1182,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":212,"element":{"ref":213},"startPos":726,"endPos":1176,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":213,"sourceAnchor":{"ref":212},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":3,"numberOfLinesOfCode":11,"types":[],"functions":[],"localVariables":[{"ref":217},{"ref":219}],"signature":"(isAuthenticated: boolean) => void","parameters":[{"ref":215}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":214,"element":{"ref":215},"startPos":727,"endPos":751,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.Parameter","id":215,"sourceAnchor":{"ref":214},"comments":[],"incomingImports":[],"name":"isAuthenticated","decorators":[],"incomingAccesses":[{"ref":2612}],"declaredType":{"ref":63},"parentBehaviouralEntity":{"ref":213}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":216,"element":{"ref":217},"startPos":772,"endPos":820,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.Variable","id":217,"sourceAnchor":{"ref":216},"comments":[],"incomingImports":[],"name":"authRequired","decorators":[],"incomingAccesses":[{"ref":2613}],"declaredType":{"ref":63},"parentBehaviouralEntity":{"ref":213}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":218,"element":{"ref":219},"startPos":836,"endPos":888,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.Variable","id":219,"sourceAnchor":{"ref":218},"comments":[],"incomingImports":[],"name":"unauthRequired","decorators":[],"incomingAccesses":[{"ref":2614}],"declaredType":{"ref":63},"parentBehaviouralEntity":{"ref":213}},{"FM3":"FamixTypeScript.Method","id":220,"sourceAnchor":{"ref":227},"comments":[],"incomingImports":[],"name":"constructor","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":4,"types":[{"ref":229},{"ref":231},{"ref":241}],"functions":[],"localVariables":[],"signature":"constructor(\n private templateRef: TemplateRef<T>,\n private userService: UserService,\n private viewContainer: ViewContainerRef,\n )","parameters":[{"ref":233},{"ref":237},{"ref":243}],"numberOfParameters":3,"incomingInvocations":[],"declaredType":{"ref":226},"parentType":{"ref":199},"kind":"constructor","isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":221,"element":{"ref":222},"startPos":413,"endPos":556,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.Type","id":222,"sourceAnchor":{"ref":221},"comments":[],"incomingImports":[],"name":"T","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":199},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":223,"element":{"ref":224},"startPos":413,"endPos":556,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.Type","id":224,"sourceAnchor":{"ref":223},"comments":[],"incomingImports":[],"name":"import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/core/auth/if-authenticated.directive\").IfAuthenticatedDirective","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":199},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":225,"element":{"ref":226},"startPos":413,"endPos":556,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.ParameterType","id":226,"sourceAnchor":{"ref":225},"comments":[],"incomingImports":[],"name":"import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/core/auth/if-authenticated.directive\").IfAuthenticatedDirective<T>","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":199},"incomingReferences":[],"baseType":{"ref":224},"arguments":[{"ref":222}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":227,"element":{"ref":220},"startPos":413,"endPos":556,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":228,"element":{"ref":229},"startPos":430,"endPos":465,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.Type","id":229,"sourceAnchor":{"ref":228},"comments":[],"incomingImports":[],"name":"TemplateRef","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":220},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":230,"element":{"ref":231},"startPos":430,"endPos":465,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.ParameterType","id":231,"sourceAnchor":{"ref":230},"comments":[],"incomingImports":[],"name":"TemplateRef<T>","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":220},"incomingReferences":[],"baseType":{"ref":229},"arguments":[{"ref":222}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":232,"element":{"ref":233},"startPos":430,"endPos":465,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.Parameter","id":233,"sourceAnchor":{"ref":232},"comments":[],"incomingImports":[],"name":"templateRef","decorators":[],"incomingAccesses":[{"ref":2615}],"declaredType":{"ref":231},"parentBehaviouralEntity":{"ref":220}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":234,"element":{"ref":235},"startPos":1278,"endPos":1314,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.Property","id":235,"sourceAnchor":{"ref":234},"comments":[],"incomingImports":[],"name":"templateRef","decorators":[],"incomingAccesses":[],"declaredType":{"ref":231},"readOnly":false,"isClassSide":false,"parentType":{"ref":199},"visibility":"private"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":236,"element":{"ref":237},"startPos":471,"endPos":503,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.Parameter","id":237,"sourceAnchor":{"ref":236},"comments":[],"incomingImports":[],"name":"userService","decorators":[],"incomingAccesses":[{"ref":2616}],"declaredType":{"ref":33},"parentBehaviouralEntity":{"ref":220}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":238,"element":{"ref":239},"startPos":1278,"endPos":1311,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.Property","id":239,"sourceAnchor":{"ref":238},"comments":[],"incomingImports":[],"name":"userService","decorators":[],"incomingAccesses":[],"declaredType":{"ref":33},"readOnly":false,"isClassSide":false,"parentType":{"ref":199},"visibility":"private"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":240,"element":{"ref":241},"startPos":509,"endPos":548,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.Type","id":241,"sourceAnchor":{"ref":240},"comments":[],"incomingImports":[],"name":"ViewContainerRef","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":220},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":242,"element":{"ref":243},"startPos":509,"endPos":548,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.Parameter","id":243,"sourceAnchor":{"ref":242},"comments":[],"incomingImports":[],"name":"viewContainer","decorators":[],"incomingAccesses":[{"ref":2617}],"declaredType":{"ref":241},"parentBehaviouralEntity":{"ref":220}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":244,"element":{"ref":245},"startPos":1278,"endPos":1318,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.Property","id":245,"sourceAnchor":{"ref":244},"comments":[],"incomingImports":[],"name":"viewContainer","decorators":[],"incomingAccesses":[],"declaredType":{"ref":241},"readOnly":false,"isClassSide":false,"parentType":{"ref":199},"visibility":"private"},{"FM3":"FamixTypeScript.Accessor","id":246,"sourceAnchor":{"ref":247},"comments":[],"incomingImports":[],"name":"ifAuthenticated","decorators":[{"ref":251}],"cyclomaticComplexity":1,"numberOfStatements":1,"numberOfLinesOfCode":2,"types":[],"functions":[],"localVariables":[],"signature":"@Input() set ifAuthenticated(condition: boolean)","parameters":[{"ref":249}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5},"parentType":{"ref":199},"kind":"setter","isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":247,"element":{"ref":246},"startPos":1186,"endPos":1272,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":248,"element":{"ref":249},"startPos":1215,"endPos":1233,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.Parameter","id":249,"sourceAnchor":{"ref":248},"comments":[],"incomingImports":[],"name":"condition","decorators":[],"incomingAccesses":[{"ref":2618}],"declaredType":{"ref":63},"parentBehaviouralEntity":{"ref":246}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":250,"element":{"ref":251},"startPos":1186,"endPos":1194,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.Decorator","id":251,"sourceAnchor":{"ref":250},"comments":[],"incomingImports":[],"name":"@Input","decorators":[],"expression":"Input()","decoratedEntity":{"ref":246}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":252,"element":{"ref":253},"startPos":726,"endPos":1176,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":253,"sourceAnchor":{"ref":252},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":3,"numberOfLinesOfCode":11,"types":[],"functions":[],"localVariables":[{"ref":257},{"ref":259}],"signature":"(isAuthenticated: boolean) => void","parameters":[{"ref":255}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":254,"element":{"ref":255},"startPos":727,"endPos":751,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.Parameter","id":255,"sourceAnchor":{"ref":254},"comments":[],"incomingImports":[],"name":"isAuthenticated","decorators":[],"incomingAccesses":[{"ref":2619}],"declaredType":{"ref":63},"parentBehaviouralEntity":{"ref":253}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":256,"element":{"ref":257},"startPos":772,"endPos":820,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.Variable","id":257,"sourceAnchor":{"ref":256},"comments":[],"incomingImports":[],"name":"authRequired","decorators":[],"incomingAccesses":[{"ref":2620}],"declaredType":{"ref":63},"parentBehaviouralEntity":{"ref":253}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":258,"element":{"ref":259},"startPos":836,"endPos":888,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.Variable","id":259,"sourceAnchor":{"ref":258},"comments":[],"incomingImports":[],"name":"unauthRequired","decorators":[],"incomingAccesses":[{"ref":2621}],"declaredType":{"ref":63},"parentBehaviouralEntity":{"ref":253}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":260,"element":{"ref":261},"startPos":1,"endPos":113,"fileName":"src/app/core/auth/user.model.ts"},{"FM3":"FamixTypeScript.Module","id":261,"sourceAnchor":{"ref":260},"comments":[],"incomingImports":[],"name":"user.model.ts","decorators":[],"types":[{"ref":263}],"functions":[],"localVariables":[],"outgoingImports":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":262,"element":{"ref":263},"startPos":1,"endPos":112,"fileName":"src/app/core/auth/user.model.ts"},{"FM3":"FamixTypeScript.Interface","id":263,"sourceAnchor":{"ref":262},"comments":[],"incomingImports":[],"name":"User","decorators":[],"types":[],"functions":[],"localVariables":[],"incomingReferences":[],"attributes":[{"ref":265},{"ref":267},{"ref":269},{"ref":271},{"ref":273}],"methods":[],"superInheritances":[],"subInheritances":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":264,"element":{"ref":265},"startPos":27,"endPos":41,"fileName":"src/app/core/auth/user.model.ts"},{"FM3":"FamixTypeScript.Property","id":265,"sourceAnchor":{"ref":264},"comments":[],"incomingImports":[],"name":"email","decorators":[],"incomingAccesses":[],"declaredType":{"ref":123},"readOnly":false,"isClassSide":false,"parentType":{"ref":263},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":266,"element":{"ref":267},"startPos":44,"endPos":58,"fileName":"src/app/core/auth/user.model.ts"},{"FM3":"FamixTypeScript.Property","id":267,"sourceAnchor":{"ref":266},"comments":[],"incomingImports":[],"name":"token","decorators":[],"incomingAccesses":[],"declaredType":{"ref":123},"readOnly":false,"isClassSide":false,"parentType":{"ref":263},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":268,"element":{"ref":269},"startPos":61,"endPos":78,"fileName":"src/app/core/auth/user.model.ts"},{"FM3":"FamixTypeScript.Property","id":269,"sourceAnchor":{"ref":268},"comments":[],"incomingImports":[],"name":"username","decorators":[],"incomingAccesses":[],"declaredType":{"ref":123},"readOnly":false,"isClassSide":false,"parentType":{"ref":263},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":270,"element":{"ref":271},"startPos":81,"endPos":93,"fileName":"src/app/core/auth/user.model.ts"},{"FM3":"FamixTypeScript.Property","id":271,"sourceAnchor":{"ref":270},"comments":[],"incomingImports":[],"name":"bio","decorators":[],"incomingAccesses":[],"declaredType":{"ref":123},"readOnly":false,"isClassSide":false,"parentType":{"ref":263},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":272,"element":{"ref":273},"startPos":96,"endPos":110,"fileName":"src/app/core/auth/user.model.ts"},{"FM3":"FamixTypeScript.Property","id":273,"sourceAnchor":{"ref":272},"comments":[],"incomingImports":[],"name":"image","decorators":[],"incomingAccesses":[],"declaredType":{"ref":123},"readOnly":false,"isClassSide":false,"parentType":{"ref":263},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":274,"element":{"ref":275},"startPos":1,"endPos":231,"fileName":"src/app/core/interceptors/api.interceptor.ts"},{"FM3":"FamixTypeScript.Module","id":275,"sourceAnchor":{"ref":274},"comments":[],"incomingImports":[],"name":"api.interceptor.ts","decorators":[],"types":[{"ref":277}],"functions":[{"ref":281}],"localVariables":[{"ref":279}],"outgoingImports":[{"ref":1744}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":276,"element":{"ref":277},"startPos":73,"endPos":229,"fileName":"src/app/core/interceptors/api.interceptor.ts"},{"FM3":"FamixTypeScript.Type","id":277,"sourceAnchor":{"ref":276},"comments":[],"incomingImports":[],"name":"HttpInterceptorFn","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":275},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":278,"element":{"ref":279},"startPos":73,"endPos":229,"fileName":"src/app/core/interceptors/api.interceptor.ts"},{"FM3":"FamixTypeScript.Variable","id":279,"sourceAnchor":{"ref":278},"comments":[],"incomingImports":[],"name":"apiInterceptor","decorators":[],"incomingAccesses":[{"ref":2622}],"declaredType":{"ref":277},"parentBehaviouralEntity":{"ref":275}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":280,"element":{"ref":281},"startPos":109,"endPos":229,"fileName":"src/app/core/interceptors/api.interceptor.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":281,"sourceAnchor":{"ref":280},"comments":[],"incomingImports":[],"name":"apiInterceptor","decorators":[],"numberOfStatements":2,"numberOfLinesOfCode":3,"types":[],"functions":[],"localVariables":[{"ref":287}],"signature":"(req, next) => any","parameters":[{"ref":283},{"ref":285}],"numberOfParameters":2,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":282,"element":{"ref":283},"startPos":110,"endPos":113,"fileName":"src/app/core/interceptors/api.interceptor.ts"},{"FM3":"FamixTypeScript.Parameter","id":283,"sourceAnchor":{"ref":282},"comments":[],"incomingImports":[],"name":"req","decorators":[],"incomingAccesses":[{"ref":2623}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":281}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":284,"element":{"ref":285},"startPos":115,"endPos":119,"fileName":"src/app/core/interceptors/api.interceptor.ts"},{"FM3":"FamixTypeScript.Parameter","id":285,"sourceAnchor":{"ref":284},"comments":[],"incomingImports":[],"name":"next","decorators":[],"incomingAccesses":[{"ref":2624}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":281}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":286,"element":{"ref":287},"startPos":134,"endPos":203,"fileName":"src/app/core/interceptors/api.interceptor.ts"},{"FM3":"FamixTypeScript.Variable","id":287,"sourceAnchor":{"ref":286},"comments":[],"incomingImports":[],"name":"apiReq","decorators":[],"incomingAccesses":[{"ref":2625}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":281}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":288,"element":{"ref":289},"startPos":1,"endPos":286,"fileName":"src/app/core/interceptors/error.interceptor.ts"},{"FM3":"FamixTypeScript.Module","id":289,"sourceAnchor":{"ref":288},"comments":[],"incomingImports":[],"name":"error.interceptor.ts","decorators":[],"types":[],"functions":[{"ref":293},{"ref":307},{"ref":313}],"localVariables":[{"ref":291}],"outgoingImports":[{"ref":1748},{"ref":1752},{"ref":1756}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":290,"element":{"ref":291},"startPos":153,"endPos":284,"fileName":"src/app/core/interceptors/error.interceptor.ts"},{"FM3":"FamixTypeScript.Variable","id":291,"sourceAnchor":{"ref":290},"comments":[],"incomingImports":[],"name":"errorInterceptor","decorators":[],"incomingAccesses":[{"ref":2626}],"declaredType":{"ref":277},"parentBehaviouralEntity":{"ref":289}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":292,"element":{"ref":293},"startPos":191,"endPos":284,"fileName":"src/app/core/interceptors/error.interceptor.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":293,"sourceAnchor":{"ref":292},"comments":[],"incomingImports":[],"name":"errorInterceptor","decorators":[],"numberOfStatements":1,"numberOfLinesOfCode":2,"types":[],"functions":[{"ref":299},{"ref":305}],"localVariables":[],"signature":"(req, next) => any","parameters":[{"ref":295},{"ref":297}],"numberOfParameters":2,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":294,"element":{"ref":295},"startPos":192,"endPos":195,"fileName":"src/app/core/interceptors/error.interceptor.ts"},{"FM3":"FamixTypeScript.Parameter","id":295,"sourceAnchor":{"ref":294},"comments":[],"incomingImports":[],"name":"req","decorators":[],"incomingAccesses":[{"ref":2627}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":293}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":296,"element":{"ref":297},"startPos":197,"endPos":201,"fileName":"src/app/core/interceptors/error.interceptor.ts"},{"FM3":"FamixTypeScript.Parameter","id":297,"sourceAnchor":{"ref":296},"comments":[],"incomingImports":[],"name":"next","decorators":[],"incomingAccesses":[{"ref":2628}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":293}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":298,"element":{"ref":299},"startPos":243,"endPos":279,"fileName":"src/app/core/interceptors/error.interceptor.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":299,"sourceAnchor":{"ref":298},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[{"ref":303}],"localVariables":[],"signature":"(err) => any","parameters":[{"ref":301}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":300,"element":{"ref":301},"startPos":244,"endPos":247,"fileName":"src/app/core/interceptors/error.interceptor.ts"},{"FM3":"FamixTypeScript.Parameter","id":301,"sourceAnchor":{"ref":300},"comments":[],"incomingImports":[],"name":"err","decorators":[],"incomingAccesses":[{"ref":2629}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":299}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":302,"element":{"ref":303},"startPos":263,"endPos":278,"fileName":"src/app/core/interceptors/error.interceptor.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":303,"sourceAnchor":{"ref":302},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"() => any","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":304,"element":{"ref":305},"startPos":263,"endPos":278,"fileName":"src/app/core/interceptors/error.interceptor.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":305,"sourceAnchor":{"ref":304},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"() => any","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":306,"element":{"ref":307},"startPos":243,"endPos":279,"fileName":"src/app/core/interceptors/error.interceptor.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":307,"sourceAnchor":{"ref":306},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[{"ref":311}],"localVariables":[],"signature":"(err) => any","parameters":[{"ref":309}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":308,"element":{"ref":309},"startPos":244,"endPos":247,"fileName":"src/app/core/interceptors/error.interceptor.ts"},{"FM3":"FamixTypeScript.Parameter","id":309,"sourceAnchor":{"ref":308},"comments":[],"incomingImports":[],"name":"err","decorators":[],"incomingAccesses":[{"ref":2630}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":307}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":310,"element":{"ref":311},"startPos":263,"endPos":278,"fileName":"src/app/core/interceptors/error.interceptor.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":311,"sourceAnchor":{"ref":310},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"() => any","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":312,"element":{"ref":313},"startPos":263,"endPos":278,"fileName":"src/app/core/interceptors/error.interceptor.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":313,"sourceAnchor":{"ref":312},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"() => any","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":314,"element":{"ref":315},"startPos":1,"endPos":424,"fileName":"src/app/core/interceptors/token.interceptor.ts"},{"FM3":"FamixTypeScript.Module","id":315,"sourceAnchor":{"ref":314},"comments":[],"incomingImports":[],"name":"token.interceptor.ts","decorators":[],"types":[],"functions":[{"ref":319}],"localVariables":[{"ref":317}],"outgoingImports":[{"ref":1760},{"ref":1764},{"ref":1765}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":316,"element":{"ref":317},"startPos":172,"endPos":422,"fileName":"src/app/core/interceptors/token.interceptor.ts"},{"FM3":"FamixTypeScript.Variable","id":317,"sourceAnchor":{"ref":316},"comments":[],"incomingImports":[],"name":"tokenInterceptor","decorators":[],"incomingAccesses":[{"ref":2631}],"declaredType":{"ref":277},"parentBehaviouralEntity":{"ref":315}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":318,"element":{"ref":319},"startPos":210,"endPos":422,"fileName":"src/app/core/interceptors/token.interceptor.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":319,"sourceAnchor":{"ref":318},"comments":[],"incomingImports":[],"name":"tokenInterceptor","decorators":[],"numberOfStatements":3,"numberOfLinesOfCode":9,"types":[],"functions":[],"localVariables":[{"ref":325},{"ref":327}],"signature":"(req, next) => any","parameters":[{"ref":321},{"ref":323}],"numberOfParameters":2,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":320,"element":{"ref":321},"startPos":211,"endPos":214,"fileName":"src/app/core/interceptors/token.interceptor.ts"},{"FM3":"FamixTypeScript.Parameter","id":321,"sourceAnchor":{"ref":320},"comments":[],"incomingImports":[],"name":"req","decorators":[],"incomingAccesses":[{"ref":2632}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":319}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":322,"element":{"ref":323},"startPos":216,"endPos":220,"fileName":"src/app/core/interceptors/token.interceptor.ts"},{"FM3":"FamixTypeScript.Parameter","id":323,"sourceAnchor":{"ref":322},"comments":[],"incomingImports":[],"name":"next","decorators":[],"incomingAccesses":[{"ref":2633}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":319}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":324,"element":{"ref":325},"startPos":235,"endPos":272,"fileName":"src/app/core/interceptors/token.interceptor.ts"},{"FM3":"FamixTypeScript.Variable","id":325,"sourceAnchor":{"ref":324},"comments":[],"incomingImports":[],"name":"token","decorators":[],"incomingAccesses":[{"ref":2634}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":319}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":326,"element":{"ref":327},"startPos":283,"endPos":395,"fileName":"src/app/core/interceptors/token.interceptor.ts"},{"FM3":"FamixTypeScript.Variable","id":327,"sourceAnchor":{"ref":326},"comments":[],"incomingImports":[],"name":"request","decorators":[],"incomingAccesses":[{"ref":2635}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":319}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":328,"element":{"ref":329},"startPos":1,"endPos":420,"fileName":"src/app/core/layout/footer.component.ts"},{"FM3":"FamixTypeScript.Module","id":329,"sourceAnchor":{"ref":328},"comments":[],"incomingImports":[],"name":"footer.component.ts","decorators":[],"types":[{"ref":331}],"functions":[],"localVariables":[],"outgoingImports":[{"ref":1769},{"ref":1773},{"ref":1777},{"ref":1781}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":330,"element":{"ref":331},"startPos":160,"endPos":419,"fileName":"src/app/core/layout/footer.component.ts"},{"FM3":"FamixTypeScript.Class","id":331,"sourceAnchor":{"ref":330},"comments":[],"incomingImports":[],"name":"FooterComponent","decorators":[{"ref":333}],"types":[{"ref":335}],"functions":[],"localVariables":[],"incomingReferences":[],"isAbstract":false,"attributes":[{"ref":337}],"methods":[],"superInheritances":[],"subInheritances":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":332,"element":{"ref":333},"startPos":160,"endPos":356,"fileName":"src/app/core/layout/footer.component.ts"},{"FM3":"FamixTypeScript.Decorator","id":333,"sourceAnchor":{"ref":332},"comments":[],"incomingImports":[],"name":"@Component","decorators":[],"expression":"Component({\n selector: \"app-layout-footer\",\n templateUrl: \"./footer.component.html\",\n changeDetection: ChangeDetectionStrategy.OnPush,\n imports: [DatePipe, RouterLink],\n standalone: true,\n})","decoratedEntity":{"ref":331}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":334,"element":{"ref":335},"startPos":390,"endPos":417,"fileName":"src/app/core/layout/footer.component.ts"},{"FM3":"FamixTypeScript.PrimitiveType","id":335,"isStub":true,"sourceAnchor":{"ref":334},"comments":[],"incomingImports":[],"name":"number","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":331},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":336,"element":{"ref":337},"startPos":390,"endPos":417,"fileName":"src/app/core/layout/footer.component.ts"},{"FM3":"FamixTypeScript.Property","id":337,"sourceAnchor":{"ref":336},"comments":[],"incomingImports":[],"name":"today","decorators":[],"incomingAccesses":[],"declaredType":{"ref":335},"readOnly":false,"isClassSide":false,"parentType":{"ref":331},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":338,"element":{"ref":339},"startPos":1,"endPos":613,"fileName":"src/app/core/layout/header.component.ts"},{"FM3":"FamixTypeScript.Module","id":339,"sourceAnchor":{"ref":338},"comments":[],"incomingImports":[],"name":"header.component.ts","decorators":[],"types":[{"ref":341}],"functions":[],"localVariables":[],"outgoingImports":[{"ref":1785},{"ref":1789},{"ref":1790},{"ref":1794},{"ref":1798},{"ref":1802},{"ref":1806},{"ref":1809}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":340,"element":{"ref":341},"startPos":308,"endPos":612,"fileName":"src/app/core/layout/header.component.ts"},{"FM3":"FamixTypeScript.Class","id":341,"sourceAnchor":{"ref":340},"comments":[],"incomingImports":[],"name":"HeaderComponent","decorators":[{"ref":343}],"types":[],"functions":[],"localVariables":[],"incomingReferences":[],"isAbstract":false,"attributes":[{"ref":345}],"methods":[],"superInheritances":[],"subInheritances":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":342,"element":{"ref":343},"startPos":308,"endPos":529,"fileName":"src/app/core/layout/header.component.ts"},{"FM3":"FamixTypeScript.Decorator","id":343,"sourceAnchor":{"ref":342},"comments":[],"incomingImports":[],"name":"@Component","decorators":[],"expression":"Component({\n selector: \"app-layout-header\",\n templateUrl: \"./header.component.html\",\n imports: [\n RouterLinkActive,\n RouterLink,\n AsyncPipe,\n NgIf,\n IfAuthenticatedDirective,\n ],\n standalone: true,\n})","decoratedEntity":{"ref":341}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":344,"element":{"ref":345},"startPos":563,"endPos":610,"fileName":"src/app/core/layout/header.component.ts"},{"FM3":"FamixTypeScript.Property","id":345,"sourceAnchor":{"ref":344},"comments":[],"incomingImports":[],"name":"currentUser$","decorators":[],"incomingAccesses":[],"declaredType":{"ref":9},"readOnly":false,"isClassSide":false,"parentType":{"ref":341},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":346,"element":{"ref":347},"startPos":1,"endPos":66,"fileName":"src/app/core/models/errors.model.ts"},{"FM3":"FamixTypeScript.Module","id":347,"sourceAnchor":{"ref":346},"comments":[],"incomingImports":[],"name":"errors.model.ts","decorators":[],"types":[{"ref":349}],"functions":[],"localVariables":[],"outgoingImports":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":348,"element":{"ref":349},"startPos":1,"endPos":65,"fileName":"src/app/core/models/errors.model.ts"},{"FM3":"FamixTypeScript.Interface","id":349,"sourceAnchor":{"ref":348},"comments":[],"incomingImports":[],"name":"Errors","decorators":[],"types":[{"ref":351}],"functions":[],"localVariables":[],"incomingReferences":[],"attributes":[{"ref":353}],"methods":[],"superInheritances":[],"subInheritances":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":350,"element":{"ref":351},"startPos":29,"endPos":63,"fileName":"src/app/core/models/errors.model.ts"},{"FM3":"FamixTypeScript.Type","id":351,"sourceAnchor":{"ref":350},"comments":[],"incomingImports":[],"name":"{ [key: string]: string; }","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":349},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":352,"element":{"ref":353},"startPos":29,"endPos":63,"fileName":"src/app/core/models/errors.model.ts"},{"FM3":"FamixTypeScript.Property","id":353,"sourceAnchor":{"ref":352},"comments":[],"incomingImports":[],"name":"errors","decorators":[],"incomingAccesses":[],"declaredType":{"ref":351},"readOnly":false,"isClassSide":false,"parentType":{"ref":349},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":354,"element":{"ref":355},"startPos":1,"endPos":103,"fileName":"src/app/core/models/loading-state.model.ts"},{"FM3":"FamixTypeScript.Module","id":355,"sourceAnchor":{"ref":354},"comments":[],"incomingImports":[],"name":"loading-state.model.ts","decorators":[],"types":[{"ref":359},{"ref":363},{"ref":367},{"ref":357}],"functions":[],"localVariables":[],"outgoingImports":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":356,"element":{"ref":357},"startPos":1,"endPos":102,"fileName":"src/app/core/models/loading-state.model.ts"},{"FM3":"FamixTypeScript.Enum","id":357,"sourceAnchor":{"ref":356},"comments":[],"incomingImports":[],"name":"LoadingState","decorators":[],"types":[],"functions":[],"localVariables":[],"incomingReferences":[],"enumValues":[{"ref":361},{"ref":365},{"ref":369}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":358,"element":{"ref":359},"startPos":30,"endPos":55,"fileName":"src/app/core/models/loading-state.model.ts"},{"FM3":"FamixTypeScript.Type","id":359,"sourceAnchor":{"ref":358},"comments":[],"incomingImports":[],"name":"import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/core/models/loading-state.model\").LoadingState.NOT_LOADED","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":355},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":360,"element":{"ref":361},"startPos":30,"endPos":55,"fileName":"src/app/core/models/loading-state.model.ts"},{"FM3":"FamixTypeScript.EnumValue","id":361,"sourceAnchor":{"ref":360},"comments":[],"incomingImports":[],"name":"NOT_LOADED","decorators":[],"incomingAccesses":[],"declaredType":{"ref":359},"parentEnum":{"ref":357}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":362,"element":{"ref":363},"startPos":59,"endPos":78,"fileName":"src/app/core/models/loading-state.model.ts"},{"FM3":"FamixTypeScript.Type","id":363,"sourceAnchor":{"ref":362},"comments":[],"incomingImports":[],"name":"import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/core/models/loading-state.model\").LoadingState.LOADING","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":355},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":364,"element":{"ref":365},"startPos":59,"endPos":78,"fileName":"src/app/core/models/loading-state.model.ts"},{"FM3":"FamixTypeScript.EnumValue","id":365,"sourceAnchor":{"ref":364},"comments":[],"incomingImports":[],"name":"LOADING","decorators":[],"incomingAccesses":[{"ref":2636}],"declaredType":{"ref":363},"parentEnum":{"ref":357}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":366,"element":{"ref":367},"startPos":82,"endPos":99,"fileName":"src/app/core/models/loading-state.model.ts"},{"FM3":"FamixTypeScript.Type","id":367,"sourceAnchor":{"ref":366},"comments":[],"incomingImports":[],"name":"import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/core/models/loading-state.model\").LoadingState.LOADED","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":355},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":368,"element":{"ref":369},"startPos":82,"endPos":99,"fileName":"src/app/core/models/loading-state.model.ts"},{"FM3":"FamixTypeScript.EnumValue","id":369,"sourceAnchor":{"ref":368},"comments":[],"incomingImports":[],"name":"LOADED","decorators":[],"incomingAccesses":[{"ref":2637}],"declaredType":{"ref":367},"parentEnum":{"ref":357}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":370,"element":{"ref":371},"startPos":1,"endPos":624,"fileName":"src/app/features/profile/profile.routes.ts"},{"FM3":"FamixTypeScript.Module","id":371,"sourceAnchor":{"ref":370},"comments":[],"incomingImports":[],"name":"profile.routes.ts","decorators":[],"types":[{"ref":375},{"ref":377},{"ref":381},{"ref":383}],"functions":[{"ref":379},{"ref":385}],"localVariables":[{"ref":373}],"outgoingImports":[{"ref":1813},{"ref":1816}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":372,"element":{"ref":373},"startPos":120,"endPos":598,"fileName":"src/app/features/profile/profile.routes.ts"},{"FM3":"FamixTypeScript.Variable","id":373,"sourceAnchor":{"ref":372},"comments":[],"incomingImports":[],"name":"routes","decorators":[],"incomingAccesses":[{"ref":2638}],"declaredType":{"ref":43},"parentBehaviouralEntity":{"ref":371}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":374,"element":{"ref":375},"startPos":326,"endPos":395,"fileName":"src/app/features/profile/profile.routes.ts"},{"FM3":"FamixTypeScript.Type","id":375,"sourceAnchor":{"ref":374},"comments":[],"incomingImports":[],"name":"typeof import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/profile/components/profile-articles.component\")","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":371},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":376,"element":{"ref":377},"startPos":326,"endPos":395,"fileName":"src/app/features/profile/profile.routes.ts"},{"FM3":"FamixTypeScript.ParameterType","id":377,"sourceAnchor":{"ref":376},"comments":[],"incomingImports":[],"name":"Promise<typeof import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/profile/components/profile-articles.component\")>","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":371},"incomingReferences":[],"baseType":{"ref":49},"arguments":[{"ref":375}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":378,"element":{"ref":379},"startPos":326,"endPos":395,"fileName":"src/app/features/profile/profile.routes.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":379,"sourceAnchor":{"ref":378},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":1,"types":[],"functions":[],"localVariables":[],"signature":"() => Promise<typeof import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/profile/components/profile-articles.component\")>","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":377}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":380,"element":{"ref":381},"startPos":480,"endPos":550,"fileName":"src/app/features/profile/profile.routes.ts"},{"FM3":"FamixTypeScript.Type","id":381,"sourceAnchor":{"ref":380},"comments":[],"incomingImports":[],"name":"typeof import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/profile/components/profile-favorites.component\")","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":371},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":382,"element":{"ref":383},"startPos":480,"endPos":550,"fileName":"src/app/features/profile/profile.routes.ts"},{"FM3":"FamixTypeScript.ParameterType","id":383,"sourceAnchor":{"ref":382},"comments":[],"incomingImports":[],"name":"Promise<typeof import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/profile/components/profile-favorites.component\")>","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":371},"incomingReferences":[],"baseType":{"ref":49},"arguments":[{"ref":381}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":384,"element":{"ref":385},"startPos":480,"endPos":550,"fileName":"src/app/features/profile/profile.routes.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":385,"sourceAnchor":{"ref":384},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":1,"types":[],"functions":[],"localVariables":[],"signature":"() => Promise<typeof import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/profile/components/profile-favorites.component\")>","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":383}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":386,"element":{"ref":387},"startPos":1,"endPos":2118,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.Module","id":387,"sourceAnchor":{"ref":386},"comments":[],"incomingImports":[],"name":"settings.component.ts","decorators":[],"types":[{"ref":389},{"ref":435}],"functions":[{"ref":447},{"ref":451}],"localVariables":[],"outgoingImports":[{"ref":1820},{"ref":1824},{"ref":1828},{"ref":1832},{"ref":1836},{"ref":1840},{"ref":1844},{"ref":1848},{"ref":1852},{"ref":1855},{"ref":1856},{"ref":1857},{"ref":1858},{"ref":1862}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":388,"element":{"ref":389},"startPos":723,"endPos":2117,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.Class","id":389,"sourceAnchor":{"ref":388},"comments":[],"incomingImports":[],"name":"SettingsComponent","decorators":[{"ref":391}],"types":[{"ref":393},{"ref":399},{"ref":424}],"functions":[],"localVariables":[],"incomingReferences":[],"isAbstract":false,"attributes":[{"ref":395},{"ref":397},{"ref":401},{"ref":403},{"ref":405},{"ref":429},{"ref":433}],"methods":[{"ref":406},{"ref":408},{"ref":410},{"ref":422}],"superInheritances":[{"ref":2924}],"subInheritances":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":390,"element":{"ref":391},"startPos":723,"endPos":890,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.Decorator","id":391,"sourceAnchor":{"ref":390},"comments":[],"incomingImports":[],"name":"@Component","decorators":[],"expression":"Component({\n selector: \"app-settings-page\",\n templateUrl: \"./settings.component.html\",\n imports: [ListErrorsComponent, ReactiveFormsModule],\n standalone: true,\n})","decoratedEntity":{"ref":389}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":392,"element":{"ref":393},"startPos":952,"endPos":964,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.Type","id":393,"sourceAnchor":{"ref":392},"comments":[],"incomingImports":[],"name":"import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/core/auth/user.model\").User","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":389},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":394,"element":{"ref":395},"startPos":952,"endPos":964,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.Property","id":395,"sourceAnchor":{"ref":394},"comments":[],"incomingImports":[],"name":"user","decorators":[],"incomingAccesses":[],"declaredType":{"ref":393},"readOnly":false,"isClassSide":false,"parentType":{"ref":389},"visibility":"","isDefinitelyAssigned":true},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":396,"element":{"ref":397},"startPos":967,"endPos":1348,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.Property","id":397,"sourceAnchor":{"ref":396},"comments":[],"incomingImports":[],"name":"settingsForm","decorators":[],"incomingAccesses":[{"ref":2639},{"ref":2640}],"declaredType":{"ref":9},"readOnly":false,"isClassSide":false,"parentType":{"ref":389},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":398,"element":{"ref":399},"startPos":1351,"endPos":1380,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.Type","id":399,"sourceAnchor":{"ref":398},"comments":[],"incomingImports":[],"name":"import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/core/models/errors.model\").Errors | null","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":389},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":400,"element":{"ref":401},"startPos":1351,"endPos":1380,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.Property","id":401,"sourceAnchor":{"ref":400},"comments":[],"incomingImports":[],"name":"errors","decorators":[],"incomingAccesses":[{"ref":2641}],"declaredType":{"ref":399},"readOnly":false,"isClassSide":false,"parentType":{"ref":389},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":402,"element":{"ref":403},"startPos":1383,"endPos":1404,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.Property","id":403,"sourceAnchor":{"ref":402},"comments":[],"incomingImports":[],"name":"isSubmitting","decorators":[],"incomingAccesses":[{"ref":2642}],"declaredType":{"ref":63},"readOnly":false,"isClassSide":false,"parentType":{"ref":389},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":404,"element":{"ref":405},"startPos":1407,"endPos":1439,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.Property","id":405,"sourceAnchor":{"ref":404},"comments":[],"incomingImports":[],"name":"destroyRef","decorators":[],"incomingAccesses":[{"ref":2643}],"declaredType":{"ref":9},"readOnly":false,"isClassSide":false,"parentType":{"ref":389},"visibility":""},{"FM3":"FamixTypeScript.Method","id":406,"sourceAnchor":{"ref":407},"comments":[],"incomingImports":[],"name":"ngOnInit","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":1,"numberOfLinesOfCode":4,"types":[],"functions":[],"localVariables":[],"signature":"ngOnInit(): void","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":5},"parentType":{"ref":389},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":407,"element":{"ref":406},"startPos":1550,"endPos":1671,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.Method","id":408,"sourceAnchor":{"ref":409},"comments":[],"incomingImports":[],"name":"logout","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":1,"numberOfLinesOfCode":2,"types":[],"functions":[],"localVariables":[],"signature":"logout(): void","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":5},"parentType":{"ref":389},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":409,"element":{"ref":408},"startPos":1675,"endPos":1726,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.Method","id":410,"sourceAnchor":{"ref":411},"comments":[],"incomingImports":[],"name":"submitForm","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":2,"numberOfLinesOfCode":14,"types":[{"ref":415}],"functions":[{"ref":413},{"ref":419}],"localVariables":[],"signature":"submitForm()","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":5},"parentType":{"ref":389},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":411,"element":{"ref":410},"startPos":1730,"endPos":2115,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":412,"element":{"ref":413},"startPos":1918,"endPos":1997,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":413,"sourceAnchor":{"ref":412},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":1,"types":[],"functions":[],"localVariables":[],"signature":"({ user }) => undefined","parameters":[{"ref":417}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":151}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":414,"element":{"ref":415},"startPos":1919,"endPos":1927,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.Type","id":415,"sourceAnchor":{"ref":414},"comments":[],"incomingImports":[],"name":"{ user: any; }","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":410},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":416,"element":{"ref":417},"startPos":1919,"endPos":1927,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":417,"sourceAnchor":{"ref":416},"comments":[],"incomingImports":[],"name":"{ user }","decorators":[],"incomingAccesses":[],"declaredType":{"ref":415},"parentBehaviouralEntity":{"ref":413}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":418,"element":{"ref":419},"startPos":2014,"endPos":2100,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":419,"sourceAnchor":{"ref":418},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":2,"numberOfLinesOfCode":3,"types":[],"functions":[],"localVariables":[],"signature":"(err) => void","parameters":[{"ref":421}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":420,"element":{"ref":421},"startPos":2015,"endPos":2018,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":421,"sourceAnchor":{"ref":420},"comments":[],"incomingImports":[],"name":"err","decorators":[],"incomingAccesses":[{"ref":2644}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":419}},{"FM3":"FamixTypeScript.Method","id":422,"sourceAnchor":{"ref":425},"comments":[],"incomingImports":[],"name":"constructor","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":3,"types":[],"functions":[],"localVariables":[],"signature":"constructor(\n private readonly router: Router,\n private readonly userService: UserService,\n )","parameters":[{"ref":427},{"ref":431}],"numberOfParameters":2,"incomingInvocations":[],"declaredType":{"ref":424},"parentType":{"ref":389},"kind":"constructor","isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":423,"element":{"ref":424},"startPos":1443,"endPos":1546,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.Type","id":424,"sourceAnchor":{"ref":423},"comments":[],"incomingImports":[],"name":"import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/settings/settings.component\").default","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":389},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":425,"element":{"ref":422},"startPos":1443,"endPos":1546,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":426,"element":{"ref":427},"startPos":1460,"endPos":1491,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":427,"sourceAnchor":{"ref":426},"comments":[],"incomingImports":[],"name":"router","decorators":[],"incomingAccesses":[{"ref":2645}],"declaredType":{"ref":169},"parentBehaviouralEntity":{"ref":422}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":428,"element":{"ref":429},"startPos":2121,"endPos":2153,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.Property","id":429,"sourceAnchor":{"ref":428},"comments":[],"incomingImports":[],"name":"router","decorators":[],"incomingAccesses":[],"declaredType":{"ref":169},"readOnly":true,"isClassSide":false,"parentType":{"ref":389},"visibility":"private"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":430,"element":{"ref":431},"startPos":1497,"endPos":1538,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":431,"sourceAnchor":{"ref":430},"comments":[],"incomingImports":[],"name":"userService","decorators":[],"incomingAccesses":[{"ref":2646},{"ref":2647},{"ref":2648}],"declaredType":{"ref":33},"parentBehaviouralEntity":{"ref":422}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":432,"element":{"ref":433},"startPos":2121,"endPos":2163,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.Property","id":433,"sourceAnchor":{"ref":432},"comments":[],"incomingImports":[],"name":"userService","decorators":[],"incomingAccesses":[],"declaredType":{"ref":33},"readOnly":true,"isClassSide":false,"parentType":{"ref":389},"visibility":"private"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":434,"element":{"ref":435},"startPos":541,"endPos":721,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.Interface","id":435,"sourceAnchor":{"ref":434},"comments":[],"incomingImports":[],"name":"SettingsForm","decorators":[],"types":[],"functions":[],"localVariables":[],"incomingReferences":[],"attributes":[{"ref":437},{"ref":439},{"ref":441},{"ref":443},{"ref":445}],"methods":[],"superInheritances":[],"subInheritances":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":436,"element":{"ref":437},"startPos":568,"endPos":595,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.Property","id":437,"sourceAnchor":{"ref":436},"comments":[],"incomingImports":[],"name":"image","decorators":[],"incomingAccesses":[],"declaredType":{"ref":183},"readOnly":false,"isClassSide":false,"parentType":{"ref":435},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":438,"element":{"ref":439},"startPos":598,"endPos":628,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.Property","id":439,"sourceAnchor":{"ref":438},"comments":[],"incomingImports":[],"name":"username","decorators":[],"incomingAccesses":[],"declaredType":{"ref":183},"readOnly":false,"isClassSide":false,"parentType":{"ref":435},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":440,"element":{"ref":441},"startPos":631,"endPos":656,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.Property","id":441,"sourceAnchor":{"ref":440},"comments":[],"incomingImports":[],"name":"bio","decorators":[],"incomingAccesses":[],"declaredType":{"ref":183},"readOnly":false,"isClassSide":false,"parentType":{"ref":435},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":442,"element":{"ref":443},"startPos":659,"endPos":686,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.Property","id":443,"sourceAnchor":{"ref":442},"comments":[],"incomingImports":[],"name":"email","decorators":[],"incomingAccesses":[],"declaredType":{"ref":183},"readOnly":false,"isClassSide":false,"parentType":{"ref":435},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":444,"element":{"ref":445},"startPos":689,"endPos":719,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.Property","id":445,"sourceAnchor":{"ref":444},"comments":[],"incomingImports":[],"name":"password","decorators":[],"incomingAccesses":[],"declaredType":{"ref":183},"readOnly":false,"isClassSide":false,"parentType":{"ref":435},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":446,"element":{"ref":447},"startPos":1918,"endPos":1997,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":447,"sourceAnchor":{"ref":446},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":1,"types":[],"functions":[],"localVariables":[],"signature":"({ user }) => undefined","parameters":[{"ref":449}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":151}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":448,"element":{"ref":449},"startPos":1919,"endPos":1927,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":449,"sourceAnchor":{"ref":448},"comments":[],"incomingImports":[],"name":"{ user }","decorators":[],"incomingAccesses":[],"declaredType":{"ref":415},"parentBehaviouralEntity":{"ref":447}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":450,"element":{"ref":451},"startPos":2014,"endPos":2100,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":451,"sourceAnchor":{"ref":450},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":2,"numberOfLinesOfCode":3,"types":[],"functions":[],"localVariables":[],"signature":"(err) => void","parameters":[{"ref":453}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":452,"element":{"ref":453},"startPos":2015,"endPos":2018,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":453,"sourceAnchor":{"ref":452},"comments":[],"incomingImports":[],"name":"err","decorators":[],"incomingAccesses":[{"ref":2649}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":451}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":454,"element":{"ref":455},"startPos":1,"endPos":576,"fileName":"src/app/shared/components/list-errors.component.ts"},{"FM3":"FamixTypeScript.Module","id":455,"sourceAnchor":{"ref":454},"comments":[],"incomingImports":[],"name":"list-errors.component.ts","decorators":[],"types":[{"ref":457}],"functions":[{"ref":475}],"localVariables":[],"outgoingImports":[{"ref":1866},{"ref":1870},{"ref":1871},{"ref":1875},{"ref":1879}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":456,"element":{"ref":457},"startPos":158,"endPos":575,"fileName":"src/app/shared/components/list-errors.component.ts"},{"FM3":"FamixTypeScript.Class","id":457,"sourceAnchor":{"ref":456},"comments":[],"incomingImports":[],"name":"ListErrorsComponent","decorators":[{"ref":459}],"types":[{"ref":461}],"functions":[],"localVariables":[],"incomingReferences":[],"isAbstract":false,"attributes":[{"ref":463}],"methods":[{"ref":464}],"superInheritances":[],"subInheritances":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":458,"element":{"ref":459},"startPos":158,"endPos":299,"fileName":"src/app/shared/components/list-errors.component.ts"},{"FM3":"FamixTypeScript.Decorator","id":459,"sourceAnchor":{"ref":458},"comments":[],"incomingImports":[],"name":"@Component","decorators":[],"expression":"Component({\n selector: \"app-list-errors\",\n templateUrl: \"./list-errors.component.html\",\n imports: [NgIf, NgForOf],\n standalone: true,\n})","decoratedEntity":{"ref":457}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":460,"element":{"ref":461},"startPos":337,"endPos":362,"fileName":"src/app/shared/components/list-errors.component.ts"},{"FM3":"FamixTypeScript.Type","id":461,"sourceAnchor":{"ref":460},"comments":[],"incomingImports":[],"name":"string[]","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":457},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":462,"element":{"ref":463},"startPos":337,"endPos":362,"fileName":"src/app/shared/components/list-errors.component.ts"},{"FM3":"FamixTypeScript.Property","id":463,"sourceAnchor":{"ref":462},"comments":[],"incomingImports":[],"name":"errorList","decorators":[],"incomingAccesses":[{"ref":2650}],"declaredType":{"ref":461},"readOnly":false,"isClassSide":false,"parentType":{"ref":457},"visibility":""},{"FM3":"FamixTypeScript.Accessor","id":464,"sourceAnchor":{"ref":465},"comments":[],"incomingImports":[],"name":"errors","decorators":[{"ref":473}],"cyclomaticComplexity":3,"numberOfStatements":1,"numberOfLinesOfCode":6,"types":[],"functions":[{"ref":469}],"localVariables":[],"signature":"@Input() set errors(errorList: Errors | null)","parameters":[{"ref":467}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5},"parentType":{"ref":457},"kind":"setter","isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":465,"element":{"ref":464},"startPos":366,"endPos":573,"fileName":"src/app/shared/components/list-errors.component.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":466,"element":{"ref":467},"startPos":386,"endPos":410,"fileName":"src/app/shared/components/list-errors.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":467,"sourceAnchor":{"ref":466},"comments":[],"incomingImports":[],"name":"errorList","decorators":[],"incomingAccesses":[{"ref":2651}],"declaredType":{"ref":399},"parentBehaviouralEntity":{"ref":464}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":468,"element":{"ref":469},"startPos":504,"endPos":546,"fileName":"src/app/shared/components/list-errors.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":469,"sourceAnchor":{"ref":468},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(key) => string","parameters":[{"ref":471}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":123}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":470,"element":{"ref":471},"startPos":505,"endPos":508,"fileName":"src/app/shared/components/list-errors.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":471,"sourceAnchor":{"ref":470},"comments":[],"incomingImports":[],"name":"key","decorators":[],"incomingAccesses":[{"ref":2652}],"declaredType":{"ref":123},"parentBehaviouralEntity":{"ref":469}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":472,"element":{"ref":473},"startPos":366,"endPos":374,"fileName":"src/app/shared/components/list-errors.component.ts"},{"FM3":"FamixTypeScript.Decorator","id":473,"sourceAnchor":{"ref":472},"comments":[],"incomingImports":[],"name":"@Input","decorators":[],"expression":"Input()","decoratedEntity":{"ref":464}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":474,"element":{"ref":475},"startPos":504,"endPos":546,"fileName":"src/app/shared/components/list-errors.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":475,"sourceAnchor":{"ref":474},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(key) => string","parameters":[{"ref":477}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":123}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":476,"element":{"ref":477},"startPos":505,"endPos":508,"fileName":"src/app/shared/components/list-errors.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":477,"sourceAnchor":{"ref":476},"comments":[],"incomingImports":[],"name":"key","decorators":[],"incomingAccesses":[{"ref":2653}],"declaredType":{"ref":123},"parentBehaviouralEntity":{"ref":475}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":478,"element":{"ref":479},"startPos":1,"endPos":498,"fileName":"src/app/shared/pipes/markdown.pipe.ts"},{"FM3":"FamixTypeScript.Module","id":479,"sourceAnchor":{"ref":478},"comments":[],"incomingImports":[],"name":"markdown.pipe.ts","decorators":[],"types":[{"ref":481}],"functions":[],"localVariables":[],"outgoingImports":[{"ref":1883},{"ref":1887},{"ref":1891},{"ref":1895},{"ref":1899}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":480,"element":{"ref":481},"startPos":138,"endPos":497,"fileName":"src/app/shared/pipes/markdown.pipe.ts"},{"FM3":"FamixTypeScript.Class","id":481,"sourceAnchor":{"ref":480},"comments":[],"incomingImports":[],"name":"MarkdownPipe","decorators":[{"ref":483}],"types":[{"ref":488}],"functions":[],"localVariables":[],"incomingReferences":[],"isAbstract":false,"attributes":[{"ref":485}],"methods":[{"ref":486}],"superInheritances":[{"ref":2927}],"subInheritances":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":482,"element":{"ref":483},"startPos":138,"endPos":188,"fileName":"src/app/shared/pipes/markdown.pipe.ts"},{"FM3":"FamixTypeScript.Decorator","id":483,"sourceAnchor":{"ref":482},"comments":[],"incomingImports":[],"name":"@Pipe","decorators":[],"expression":"Pipe({\n name: \"markdown\",\n standalone: true,\n})","decoratedEntity":{"ref":481}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":484,"element":{"ref":485},"startPos":244,"endPos":280,"fileName":"src/app/shared/pipes/markdown.pipe.ts"},{"FM3":"FamixTypeScript.Property","id":485,"sourceAnchor":{"ref":484},"comments":[],"incomingImports":[],"name":"domSanitizer","decorators":[],"incomingAccesses":[{"ref":2654}],"declaredType":{"ref":9},"readOnly":false,"isClassSide":false,"parentType":{"ref":481},"visibility":""},{"FM3":"FamixTypeScript.Method","id":486,"sourceAnchor":{"ref":489},"comments":[],"incomingImports":[],"name":"transform","decorators":[],"cyclomaticComplexity":2,"numberOfStatements":2,"numberOfLinesOfCode":6,"types":[],"functions":[],"localVariables":[{"ref":493}],"signature":"async transform(content: string): Promise<string>","parameters":[{"ref":491}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":488},"parentType":{"ref":481},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":487,"element":{"ref":488},"startPos":283,"endPos":495,"fileName":"src/app/shared/pipes/markdown.pipe.ts"},{"FM3":"FamixTypeScript.ParameterType","id":488,"sourceAnchor":{"ref":487},"comments":[],"incomingImports":[],"name":"Promise<string>","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":481},"incomingReferences":[],"baseType":{"ref":49},"arguments":[{"ref":123}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":489,"element":{"ref":486},"startPos":283,"endPos":495,"fileName":"src/app/shared/pipes/markdown.pipe.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":490,"element":{"ref":491},"startPos":299,"endPos":314,"fileName":"src/app/shared/pipes/markdown.pipe.ts"},{"FM3":"FamixTypeScript.Parameter","id":491,"sourceAnchor":{"ref":490},"comments":[],"incomingImports":[],"name":"content","decorators":[],"incomingAccesses":[{"ref":2655}],"declaredType":{"ref":123},"parentBehaviouralEntity":{"ref":486}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":492,"element":{"ref":493},"startPos":345,"endPos":380,"fileName":"src/app/shared/pipes/markdown.pipe.ts"},{"FM3":"FamixTypeScript.Variable","id":493,"sourceAnchor":{"ref":492},"comments":[],"incomingImports":[],"name":"{ marked }","decorators":[],"incomingAccesses":[],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":486}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":494,"element":{"ref":495},"startPos":1,"endPos":344,"fileName":"src/app/core/auth/services/jwt.service.ts"},{"FM3":"FamixTypeScript.Module","id":495,"sourceAnchor":{"ref":494},"comments":[],"incomingImports":[],"name":"jwt.service.ts","decorators":[],"types":[{"ref":497}],"functions":[],"localVariables":[],"outgoingImports":[{"ref":1903}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":496,"element":{"ref":497},"startPos":46,"endPos":343,"fileName":"src/app/core/auth/services/jwt.service.ts"},{"FM3":"FamixTypeScript.Class","id":497,"sourceAnchor":{"ref":496},"comments":[],"incomingImports":[],"name":"JwtService","decorators":[{"ref":499}],"types":[],"functions":[],"localVariables":[],"incomingReferences":[],"isAbstract":false,"attributes":[],"methods":[{"ref":500},{"ref":502},{"ref":506}],"superInheritances":[],"subInheritances":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":498,"element":{"ref":499},"startPos":46,"endPos":81,"fileName":"src/app/core/auth/services/jwt.service.ts"},{"FM3":"FamixTypeScript.Decorator","id":499,"sourceAnchor":{"ref":498},"comments":[],"incomingImports":[],"name":"@Injectable","decorators":[],"expression":"Injectable({ providedIn: \"root\" })","decoratedEntity":{"ref":497}},{"FM3":"FamixTypeScript.Method","id":500,"sourceAnchor":{"ref":501},"comments":[],"incomingImports":[],"name":"getToken","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":1,"numberOfLinesOfCode":2,"types":[],"functions":[],"localVariables":[],"signature":"getToken(): string","parameters":[],"numberOfParameters":0,"incomingInvocations":[{"ref":2877}],"declaredType":{"ref":123},"parentType":{"ref":497},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":501,"element":{"ref":500},"startPos":110,"endPos":178,"fileName":"src/app/core/auth/services/jwt.service.ts"},{"FM3":"FamixTypeScript.Method","id":502,"sourceAnchor":{"ref":503},"comments":[],"incomingImports":[],"name":"saveToken","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":1,"numberOfLinesOfCode":2,"types":[],"functions":[],"localVariables":[],"signature":"saveToken(token: string): void","parameters":[{"ref":505}],"numberOfParameters":1,"incomingInvocations":[{"ref":2878}],"declaredType":{"ref":5},"parentType":{"ref":497},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":503,"element":{"ref":502},"startPos":182,"endPos":263,"fileName":"src/app/core/auth/services/jwt.service.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":504,"element":{"ref":505},"startPos":192,"endPos":205,"fileName":"src/app/core/auth/services/jwt.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":505,"sourceAnchor":{"ref":504},"comments":[],"incomingImports":[],"name":"token","decorators":[],"incomingAccesses":[{"ref":2656}],"declaredType":{"ref":123},"parentBehaviouralEntity":{"ref":502}},{"FM3":"FamixTypeScript.Method","id":506,"sourceAnchor":{"ref":507},"comments":[],"incomingImports":[],"name":"destroyToken","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":1,"numberOfLinesOfCode":2,"types":[],"functions":[],"localVariables":[],"signature":"destroyToken(): void","parameters":[],"numberOfParameters":0,"incomingInvocations":[{"ref":2879}],"declaredType":{"ref":5},"parentType":{"ref":497},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":507,"element":{"ref":506},"startPos":267,"endPos":341,"fileName":"src/app/core/auth/services/jwt.service.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":508,"element":{"ref":509},"startPos":1,"endPos":2086,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.Module","id":509,"sourceAnchor":{"ref":508},"comments":[],"incomingImports":[],"name":"user.service.ts","decorators":[],"types":[{"ref":511}],"functions":[{"ref":591},{"ref":595},{"ref":599},{"ref":603},{"ref":607},{"ref":609}],"localVariables":[],"outgoingImports":[{"ref":1907},{"ref":1911},{"ref":1915},{"ref":1916},{"ref":1920},{"ref":1924},{"ref":1928},{"ref":1932},{"ref":1936},{"ref":1937},{"ref":1941}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":510,"element":{"ref":511},"startPos":352,"endPos":2085,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.Class","id":511,"sourceAnchor":{"ref":510},"comments":[],"incomingImports":[],"name":"UserService","decorators":[{"ref":513}],"types":[{"ref":522},{"ref":524},{"ref":526}],"functions":[],"localVariables":[],"incomingReferences":[],"isAbstract":false,"attributes":[{"ref":515},{"ref":517},{"ref":519},{"ref":581},{"ref":585},{"ref":589}],"methods":[{"ref":520},{"ref":536},{"ref":546},{"ref":548},{"ref":556},{"ref":568},{"ref":572},{"ref":574}],"superInheritances":[],"subInheritances":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":512,"element":{"ref":513},"startPos":352,"endPos":387,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.Decorator","id":513,"sourceAnchor":{"ref":512},"comments":[],"incomingImports":[],"name":"@Injectable","decorators":[],"expression":"Injectable({ providedIn: \"root\" })","decoratedEntity":{"ref":511}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":514,"element":{"ref":515},"startPos":417,"endPos":485,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.Property","id":515,"sourceAnchor":{"ref":514},"comments":[],"incomingImports":[],"name":"currentUserSubject","decorators":[],"incomingAccesses":[{"ref":2657},{"ref":2658},{"ref":2659}],"declaredType":{"ref":9},"readOnly":false,"isClassSide":false,"parentType":{"ref":511},"visibility":"private"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":516,"element":{"ref":517},"startPos":488,"endPos":587,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.Property","id":517,"sourceAnchor":{"ref":516},"comments":[],"incomingImports":[],"name":"currentUser","decorators":[],"incomingAccesses":[{"ref":2660},{"ref":2661}],"declaredType":{"ref":9},"readOnly":false,"isClassSide":false,"parentType":{"ref":511},"visibility":"public"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":518,"element":{"ref":519},"startPos":591,"endPos":661,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.Property","id":519,"sourceAnchor":{"ref":518},"comments":[],"incomingImports":[],"name":"isAuthenticated","decorators":[],"incomingAccesses":[{"ref":2662},{"ref":2663},{"ref":2664},{"ref":2665}],"declaredType":{"ref":9},"readOnly":false,"isClassSide":false,"parentType":{"ref":511},"visibility":"public"},{"FM3":"FamixTypeScript.Method","id":520,"sourceAnchor":{"ref":527},"comments":[],"incomingImports":[],"name":"login","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":1,"numberOfLinesOfCode":7,"types":[{"ref":529}],"functions":[{"ref":533}],"localVariables":[],"signature":"login(credentials:","parameters":[{"ref":531}],"numberOfParameters":1,"incomingInvocations":[{"ref":2880}],"declaredType":{"ref":526},"parentType":{"ref":511},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":521,"element":{"ref":522},"startPos":809,"endPos":1049,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.Type","id":522,"sourceAnchor":{"ref":521},"comments":[],"incomingImports":[],"name":"{ user: import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/core/auth/user.model\").User; }","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":511},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":523,"element":{"ref":524},"startPos":809,"endPos":1049,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.Type","id":524,"sourceAnchor":{"ref":523},"comments":[],"incomingImports":[],"name":"Observable","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":511},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":525,"element":{"ref":526},"startPos":809,"endPos":1049,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.ParameterType","id":526,"sourceAnchor":{"ref":525},"comments":[],"incomingImports":[],"name":"Observable<{ user: import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/core/auth/user.model\").User; }>","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":511},"incomingReferences":[],"baseType":{"ref":524},"arguments":[{"ref":522}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":527,"element":{"ref":520},"startPos":809,"endPos":1049,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":528,"element":{"ref":529},"startPos":815,"endPos":874,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.Type","id":529,"sourceAnchor":{"ref":528},"comments":[],"incomingImports":[],"name":"{ email: string; password: string; }","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":520},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":530,"element":{"ref":531},"startPos":815,"endPos":874,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":531,"sourceAnchor":{"ref":530},"comments":[],"incomingImports":[],"name":"credentials","decorators":[],"incomingAccesses":[{"ref":2666}],"declaredType":{"ref":529},"parentBehaviouralEntity":{"ref":520}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":532,"element":{"ref":533},"startPos":1010,"endPos":1042,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":533,"sourceAnchor":{"ref":532},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"({ user }) => void","parameters":[{"ref":535}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":534,"element":{"ref":535},"startPos":1011,"endPos":1019,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":535,"sourceAnchor":{"ref":534},"comments":[],"incomingImports":[],"name":"{ user }","decorators":[],"incomingAccesses":[],"declaredType":{"ref":415},"parentBehaviouralEntity":{"ref":533}},{"FM3":"FamixTypeScript.Method","id":536,"sourceAnchor":{"ref":537},"comments":[],"incomingImports":[],"name":"register","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":1,"numberOfLinesOfCode":8,"types":[{"ref":539}],"functions":[{"ref":543}],"localVariables":[],"signature":"register(credentials:","parameters":[{"ref":541}],"numberOfParameters":1,"incomingInvocations":[{"ref":2881}],"declaredType":{"ref":526},"parentType":{"ref":511},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":537,"element":{"ref":536},"startPos":1053,"endPos":1312,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":538,"element":{"ref":539},"startPos":1062,"endPos":1143,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.Type","id":539,"sourceAnchor":{"ref":538},"comments":[],"incomingImports":[],"name":"{ username: string; email: string; password: string; }","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":536},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":540,"element":{"ref":541},"startPos":1062,"endPos":1143,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":541,"sourceAnchor":{"ref":540},"comments":[],"incomingImports":[],"name":"credentials","decorators":[],"incomingAccesses":[{"ref":2667}],"declaredType":{"ref":539},"parentBehaviouralEntity":{"ref":536}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":542,"element":{"ref":543},"startPos":1273,"endPos":1305,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":543,"sourceAnchor":{"ref":542},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"({ user }) => void","parameters":[{"ref":545}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":544,"element":{"ref":545},"startPos":1274,"endPos":1282,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":545,"sourceAnchor":{"ref":544},"comments":[],"incomingImports":[],"name":"{ user }","decorators":[],"incomingAccesses":[],"declaredType":{"ref":415},"parentBehaviouralEntity":{"ref":543}},{"FM3":"FamixTypeScript.Method","id":546,"sourceAnchor":{"ref":547},"comments":[],"incomingImports":[],"name":"logout","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":2,"numberOfLinesOfCode":3,"types":[],"functions":[],"localVariables":[],"signature":"logout(): void","parameters":[],"numberOfParameters":0,"incomingInvocations":[{"ref":2882}],"declaredType":{"ref":5},"parentType":{"ref":511},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":547,"element":{"ref":546},"startPos":1316,"endPos":1396,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.Method","id":548,"sourceAnchor":{"ref":549},"comments":[],"incomingImports":[],"name":"getCurrentUser","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":1,"numberOfLinesOfCode":8,"types":[],"functions":[{"ref":551},{"ref":555}],"localVariables":[],"signature":"getCurrentUser(): Observable<","parameters":[],"numberOfParameters":0,"incomingInvocations":[{"ref":2883},{"ref":2884},{"ref":2885}],"declaredType":{"ref":526},"parentType":{"ref":511},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":549,"element":{"ref":548},"startPos":1400,"endPos":1644,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":550,"element":{"ref":551},"startPos":1529,"endPos":1561,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":551,"sourceAnchor":{"ref":550},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"({ user }) => void","parameters":[{"ref":553}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":552,"element":{"ref":553},"startPos":1530,"endPos":1538,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":553,"sourceAnchor":{"ref":552},"comments":[],"incomingImports":[],"name":"{ user }","decorators":[],"incomingAccesses":[],"declaredType":{"ref":415},"parentBehaviouralEntity":{"ref":551}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":554,"element":{"ref":555},"startPos":1578,"endPos":1600,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":555,"sourceAnchor":{"ref":554},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"() => void","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.Method","id":556,"sourceAnchor":{"ref":557},"comments":[],"incomingImports":[],"name":"update","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":1,"numberOfLinesOfCode":6,"types":[{"ref":559},{"ref":561}],"functions":[{"ref":565}],"localVariables":[],"signature":"update(user: Partial<User>): Observable<","parameters":[{"ref":563}],"numberOfParameters":1,"incomingInvocations":[{"ref":2886}],"declaredType":{"ref":526},"parentType":{"ref":511},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":557,"element":{"ref":556},"startPos":1648,"endPos":1862,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":558,"element":{"ref":559},"startPos":1655,"endPos":1674,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.Type","id":559,"sourceAnchor":{"ref":558},"comments":[],"incomingImports":[],"name":"Partial","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":556},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":560,"element":{"ref":561},"startPos":1655,"endPos":1674,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.ParameterType","id":561,"sourceAnchor":{"ref":560},"comments":[],"incomingImports":[],"name":"Partial<import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/core/auth/user.model\").User>","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":556},"incomingReferences":[],"baseType":{"ref":559},"arguments":[{"ref":393}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":562,"element":{"ref":563},"startPos":1655,"endPos":1674,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":563,"sourceAnchor":{"ref":562},"comments":[],"incomingImports":[],"name":"user","decorators":[],"incomingAccesses":[{"ref":2668}],"declaredType":{"ref":561},"parentBehaviouralEntity":{"ref":556}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":564,"element":{"ref":565},"startPos":1782,"endPos":1849,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":565,"sourceAnchor":{"ref":564},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":1,"numberOfLinesOfCode":2,"types":[],"functions":[],"localVariables":[],"signature":"({ user }) => void","parameters":[{"ref":567}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":566,"element":{"ref":567},"startPos":1783,"endPos":1791,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":567,"sourceAnchor":{"ref":566},"comments":[],"incomingImports":[],"name":"{ user }","decorators":[],"incomingAccesses":[],"declaredType":{"ref":415},"parentBehaviouralEntity":{"ref":565}},{"FM3":"FamixTypeScript.Method","id":568,"sourceAnchor":{"ref":569},"comments":[],"incomingImports":[],"name":"setAuth","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":2,"numberOfLinesOfCode":3,"types":[],"functions":[],"localVariables":[],"signature":"setAuth(user: User): void","parameters":[{"ref":571}],"numberOfParameters":1,"incomingInvocations":[{"ref":2887},{"ref":2888},{"ref":2889},{"ref":2890}],"declaredType":{"ref":5},"parentType":{"ref":511},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":569,"element":{"ref":568},"startPos":1866,"endPos":1980,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":570,"element":{"ref":571},"startPos":1874,"endPos":1884,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":571,"sourceAnchor":{"ref":570},"comments":[],"incomingImports":[],"name":"user","decorators":[],"incomingAccesses":[{"ref":2669}],"declaredType":{"ref":393},"parentBehaviouralEntity":{"ref":568}},{"FM3":"FamixTypeScript.Method","id":572,"sourceAnchor":{"ref":573},"comments":[],"incomingImports":[],"name":"purgeAuth","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":2,"numberOfLinesOfCode":3,"types":[],"functions":[],"localVariables":[],"signature":"purgeAuth(): void","parameters":[],"numberOfParameters":0,"incomingInvocations":[{"ref":2891},{"ref":2892},{"ref":2893}],"declaredType":{"ref":5},"parentType":{"ref":511},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":573,"element":{"ref":572},"startPos":1984,"endPos":2083,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.Method","id":574,"sourceAnchor":{"ref":575},"comments":[],"incomingImports":[],"name":"constructor","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":4,"types":[{"ref":577}],"functions":[],"localVariables":[],"signature":"constructor(\n private readonly http: HttpClient,\n private readonly jwtService: JwtService,\n private readonly router: Router,\n )","parameters":[{"ref":579},{"ref":583},{"ref":587}],"numberOfParameters":3,"incomingInvocations":[],"declaredType":{"ref":33},"parentType":{"ref":511},"kind":"constructor","isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":575,"element":{"ref":574},"startPos":665,"endPos":805,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":576,"element":{"ref":577},"startPos":682,"endPos":715,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.Type","id":577,"sourceAnchor":{"ref":576},"comments":[],"incomingImports":[],"name":"HttpClient","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":574},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":578,"element":{"ref":579},"startPos":682,"endPos":715,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":579,"sourceAnchor":{"ref":578},"comments":[],"incomingImports":[],"name":"http","decorators":[],"incomingAccesses":[{"ref":2670},{"ref":2671},{"ref":2672},{"ref":2673}],"declaredType":{"ref":577},"parentBehaviouralEntity":{"ref":574}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":580,"element":{"ref":581},"startPos":2089,"endPos":2123,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.Property","id":581,"sourceAnchor":{"ref":580},"comments":[],"incomingImports":[],"name":"http","decorators":[],"incomingAccesses":[],"declaredType":{"ref":577},"readOnly":true,"isClassSide":false,"parentType":{"ref":511},"visibility":"private"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":582,"element":{"ref":583},"startPos":721,"endPos":760,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":583,"sourceAnchor":{"ref":582},"comments":[],"incomingImports":[],"name":"jwtService","decorators":[],"incomingAccesses":[{"ref":2674},{"ref":2675}],"declaredType":{"ref":29},"parentBehaviouralEntity":{"ref":574}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":584,"element":{"ref":585},"startPos":2089,"endPos":2129,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.Property","id":585,"sourceAnchor":{"ref":584},"comments":[],"incomingImports":[],"name":"jwtService","decorators":[],"incomingAccesses":[],"declaredType":{"ref":29},"readOnly":true,"isClassSide":false,"parentType":{"ref":511},"visibility":"private"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":586,"element":{"ref":587},"startPos":766,"endPos":797,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":587,"sourceAnchor":{"ref":586},"comments":[],"incomingImports":[],"name":"router","decorators":[],"incomingAccesses":[{"ref":2676}],"declaredType":{"ref":169},"parentBehaviouralEntity":{"ref":574}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":588,"element":{"ref":589},"startPos":2089,"endPos":2121,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.Property","id":589,"sourceAnchor":{"ref":588},"comments":[],"incomingImports":[],"name":"router","decorators":[],"incomingAccesses":[],"declaredType":{"ref":169},"readOnly":true,"isClassSide":false,"parentType":{"ref":511},"visibility":"private"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":590,"element":{"ref":591},"startPos":642,"endPos":658,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":591,"sourceAnchor":{"ref":590},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(user) => boolean","parameters":[{"ref":593}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":63}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":592,"element":{"ref":593},"startPos":643,"endPos":647,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":593,"sourceAnchor":{"ref":592},"comments":[],"incomingImports":[],"name":"user","decorators":[],"incomingAccesses":[],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":591}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":594,"element":{"ref":595},"startPos":1010,"endPos":1042,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":595,"sourceAnchor":{"ref":594},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"({ user }) => void","parameters":[{"ref":597}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":596,"element":{"ref":597},"startPos":1011,"endPos":1019,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":597,"sourceAnchor":{"ref":596},"comments":[],"incomingImports":[],"name":"{ user }","decorators":[],"incomingAccesses":[],"declaredType":{"ref":415},"parentBehaviouralEntity":{"ref":595}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":598,"element":{"ref":599},"startPos":1273,"endPos":1305,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":599,"sourceAnchor":{"ref":598},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"({ user }) => void","parameters":[{"ref":601}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":600,"element":{"ref":601},"startPos":1274,"endPos":1282,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":601,"sourceAnchor":{"ref":600},"comments":[],"incomingImports":[],"name":"{ user }","decorators":[],"incomingAccesses":[],"declaredType":{"ref":415},"parentBehaviouralEntity":{"ref":599}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":602,"element":{"ref":603},"startPos":1529,"endPos":1561,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":603,"sourceAnchor":{"ref":602},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"({ user }) => void","parameters":[{"ref":605}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":604,"element":{"ref":605},"startPos":1530,"endPos":1538,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":605,"sourceAnchor":{"ref":604},"comments":[],"incomingImports":[],"name":"{ user }","decorators":[],"incomingAccesses":[],"declaredType":{"ref":415},"parentBehaviouralEntity":{"ref":603}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":606,"element":{"ref":607},"startPos":1578,"endPos":1600,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":607,"sourceAnchor":{"ref":606},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"() => void","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":608,"element":{"ref":609},"startPos":1782,"endPos":1849,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":609,"sourceAnchor":{"ref":608},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":1,"numberOfLinesOfCode":2,"types":[],"functions":[],"localVariables":[],"signature":"({ user }) => void","parameters":[{"ref":611}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":610,"element":{"ref":611},"startPos":1783,"endPos":1791,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":611,"sourceAnchor":{"ref":610},"comments":[],"incomingImports":[],"name":"{ user }","decorators":[],"incomingAccesses":[],"declaredType":{"ref":415},"parentBehaviouralEntity":{"ref":609}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":612,"element":{"ref":613},"startPos":1,"endPos":1778,"fileName":"src/app/features/article/components/article-comment.component.ts"},{"FM3":"FamixTypeScript.Module","id":613,"sourceAnchor":{"ref":612},"comments":[],"incomingImports":[],"name":"article-comment.component.ts","decorators":[],"types":[{"ref":615}],"functions":[{"ref":631}],"localVariables":[],"outgoingImports":[{"ref":1945},{"ref":1949},{"ref":1953},{"ref":1957},{"ref":1961},{"ref":1962},{"ref":1963},{"ref":1967},{"ref":1971},{"ref":1974},{"ref":1978},{"ref":1982},{"ref":1986}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":614,"element":{"ref":615},"startPos":404,"endPos":1777,"fileName":"src/app/features/article/components/article-comment.component.ts"},{"FM3":"FamixTypeScript.Class","id":615,"sourceAnchor":{"ref":614},"comments":[],"incomingImports":[],"name":"ArticleCommentComponent","decorators":[{"ref":617}],"types":[{"ref":619},{"ref":633}],"functions":[],"localVariables":[],"incomingReferences":[],"isAbstract":false,"attributes":[{"ref":621},{"ref":625},{"ref":629}],"methods":[],"superInheritances":[],"subInheritances":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":616,"element":{"ref":617},"startPos":404,"endPos":1487,"fileName":"src/app/features/article/components/article-comment.component.ts"},{"FM3":"FamixTypeScript.Decorator","id":617,"sourceAnchor":{"ref":616},"comments":[],"incomingImports":[],"name":"@Component","decorators":[],"expression":"Component({\n selector: \"app-article-comment\",\n template: `\n @if (comment) {\n <div class=\"card\">\n <div class=\"card-block\">\n <p class=\"card-text\">\n {{ comment.body }}\n </p>\n </div>\n <div class=\"card-footer\">\n <a\n class=\"comment-author\"\n [routerLink]=\"['/profile', comment.author.username]\"\n >\n <img [src]=\"comment.author.image\" class=\"comment-author-img\" />\n </a>\n \n <a\n class=\"comment-author\"\n [routerLink]=\"['/profile', comment.author.username]\"\n >\n {{ comment.author.username }}\n </a>\n <span class=\"date-posted\">\n {{ comment.createdAt | date: \"longDate\" }}\n </span>\n @if (canModify$ | async) {\n <span class=\"mod-options\">\n <i class=\"ion-trash-a\" (click)=\"delete.emit(true)\"></i>\n </span>\n }\n </div>\n </div>\n }\n `,\n imports: [RouterLink, DatePipe, NgIf, AsyncPipe],\n standalone: true,\n})","decoratedEntity":{"ref":615}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":618,"element":{"ref":619},"startPos":1529,"endPos":1556,"fileName":"src/app/features/article/components/article-comment.component.ts"},{"FM3":"FamixTypeScript.Type","id":619,"sourceAnchor":{"ref":618},"comments":[],"incomingImports":[],"name":"import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/article/models/comment.model\").Comment","decorators":[{"ref":623},{"ref":627}],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":615},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":620,"element":{"ref":621},"startPos":1529,"endPos":1556,"fileName":"src/app/features/article/components/article-comment.component.ts"},{"FM3":"FamixTypeScript.Property","id":621,"sourceAnchor":{"ref":620},"comments":[],"incomingImports":[],"name":"comment","decorators":[{"ref":623}],"incomingAccesses":[],"declaredType":{"ref":619},"readOnly":false,"isClassSide":false,"parentType":{"ref":615},"visibility":"","isDefinitelyAssigned":true},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":622,"element":{"ref":623},"startPos":1529,"endPos":1537,"fileName":"src/app/features/article/components/article-comment.component.ts"},{"FM3":"FamixTypeScript.Decorator","id":623,"sourceAnchor":{"ref":622},"comments":[],"incomingImports":[],"name":"@Input","decorators":[],"expression":"Input()","decoratedEntity":{"ref":621}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":624,"element":{"ref":625},"startPos":1559,"endPos":1606,"fileName":"src/app/features/article/components/article-comment.component.ts"},{"FM3":"FamixTypeScript.Property","id":625,"sourceAnchor":{"ref":624},"comments":[],"incomingImports":[],"name":"delete","decorators":[{"ref":627}],"incomingAccesses":[],"declaredType":{"ref":9},"readOnly":false,"isClassSide":false,"parentType":{"ref":615},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":626,"element":{"ref":627},"startPos":1559,"endPos":1568,"fileName":"src/app/features/article/components/article-comment.component.ts"},{"FM3":"FamixTypeScript.Decorator","id":627,"sourceAnchor":{"ref":626},"comments":[],"incomingImports":[],"name":"@Output","decorators":[],"expression":"Output()","decoratedEntity":{"ref":625}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":628,"element":{"ref":629},"startPos":1610,"endPos":1775,"fileName":"src/app/features/article/components/article-comment.component.ts"},{"FM3":"FamixTypeScript.Property","id":629,"sourceAnchor":{"ref":628},"comments":[],"incomingImports":[],"name":"canModify$","decorators":[],"incomingAccesses":[],"declaredType":{"ref":9},"readOnly":false,"isClassSide":false,"parentType":{"ref":615},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":630,"element":{"ref":631},"startPos":1676,"endPos":1762,"fileName":"src/app/features/article/components/article-comment.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":631,"sourceAnchor":{"ref":630},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":1,"types":[],"functions":[],"localVariables":[],"signature":"(userData: User | null) => boolean","parameters":[{"ref":635}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":63}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":632,"element":{"ref":633},"startPos":1677,"endPos":1698,"fileName":"src/app/features/article/components/article-comment.component.ts"},{"FM3":"FamixTypeScript.Type","id":633,"sourceAnchor":{"ref":632},"comments":[],"incomingImports":[],"name":"import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/core/auth/user.model\").User | null","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":615},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":634,"element":{"ref":635},"startPos":1677,"endPos":1698,"fileName":"src/app/features/article/components/article-comment.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":635,"sourceAnchor":{"ref":634},"comments":[],"incomingImports":[],"name":"userData","decorators":[],"incomingAccesses":[],"declaredType":{"ref":633},"parentBehaviouralEntity":{"ref":631}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":636,"element":{"ref":637},"startPos":1,"endPos":2860,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.Module","id":637,"sourceAnchor":{"ref":636},"comments":[],"incomingImports":[],"name":"article-list.component.ts","decorators":[],"types":[{"ref":639}],"functions":[{"ref":709},{"ref":719}],"localVariables":[],"outgoingImports":[{"ref":1990},{"ref":1994},{"ref":1998},{"ref":2002},{"ref":2005},{"ref":2008},{"ref":2011},{"ref":2014},{"ref":2018},{"ref":2022},{"ref":2026},{"ref":2029},{"ref":2033}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":638,"element":{"ref":639},"startPos":527,"endPos":2859,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.Class","id":639,"sourceAnchor":{"ref":638},"comments":[],"incomingImports":[],"name":"ArticleListComponent","decorators":[{"ref":641}],"types":[{"ref":643},{"ref":647},{"ref":653},{"ref":657},{"ref":661},{"ref":694}],"functions":[],"localVariables":[],"incomingReferences":[],"isAbstract":false,"attributes":[{"ref":645},{"ref":649},{"ref":651},{"ref":655},{"ref":659},{"ref":663},{"ref":665},{"ref":667},{"ref":701}],"methods":[{"ref":670},{"ref":674},{"ref":692},{"ref":702}],"superInheritances":[],"subInheritances":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":640,"element":{"ref":641},"startPos":527,"endPos":1525,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.Decorator","id":641,"sourceAnchor":{"ref":640},"comments":[],"incomingImports":[],"name":"@Component","decorators":[],"expression":"Component({\n selector: \"app-article-list\",\n template: `\n @if (loading === LoadingState.LOADING) {\n <div class=\"article-preview\">Loading articles...</div>\n }\n\n @if (loading === LoadingState.LOADED) {\n @for (article of results; track article.slug) {\n <app-article-preview [article]=\"article\" />\n } @empty {\n <div class=\"article-preview\">No articles are here... yet.</div>\n }\n\n <nav>\n <ul class=\"pagination\">\n @for (pageNumber of totalPages; track pageNumber) {\n <li\n class=\"page-item\"\n [ngClass]=\"{ active: pageNumber === currentPage }\"\n >\n <button class=\"page-link\" (click)=\"setPageTo(pageNumber)\">\n {{ pageNumber }}\n </button>\n </li>\n }\n </ul>\n </nav>\n }\n `,\n imports: [ArticlePreviewComponent, NgForOf, NgClass, NgIf],\n styles: `\n .page-link {\n cursor: pointer;\n }\n `,\n standalone: true,\n})","decoratedEntity":{"ref":639}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":642,"element":{"ref":643},"startPos":1564,"endPos":1590,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.Type","id":643,"sourceAnchor":{"ref":642},"comments":[],"incomingImports":[],"name":"import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/article/models/article-list-config.model\").ArticleListConfig","decorators":[{"ref":669}],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":639},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":644,"element":{"ref":645},"startPos":1564,"endPos":1590,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.Property","id":645,"sourceAnchor":{"ref":644},"comments":[],"incomingImports":[],"name":"query","decorators":[],"incomingAccesses":[{"ref":2677},{"ref":2678}],"declaredType":{"ref":643},"readOnly":false,"isClassSide":false,"parentType":{"ref":639},"visibility":"","isDefinitelyAssigned":true},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":646,"element":{"ref":647},"startPos":1593,"endPos":1617,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.Type","id":647,"sourceAnchor":{"ref":646},"comments":[],"incomingImports":[],"name":"import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/article/models/article.model\").Article[]","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":639},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":648,"element":{"ref":649},"startPos":1593,"endPos":1617,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.Property","id":649,"sourceAnchor":{"ref":648},"comments":[],"incomingImports":[],"name":"results","decorators":[],"incomingAccesses":[{"ref":2679}],"declaredType":{"ref":647},"readOnly":false,"isClassSide":false,"parentType":{"ref":639},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":650,"element":{"ref":651},"startPos":1620,"endPos":1636,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.Property","id":651,"sourceAnchor":{"ref":650},"comments":[],"incomingImports":[],"name":"currentPage","decorators":[],"incomingAccesses":[{"ref":2680},{"ref":2681},{"ref":2682}],"declaredType":{"ref":335},"readOnly":false,"isClassSide":false,"parentType":{"ref":639},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":652,"element":{"ref":653},"startPos":1639,"endPos":1670,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.Type","id":653,"sourceAnchor":{"ref":652},"comments":[],"incomingImports":[],"name":"number[]","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":639},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":654,"element":{"ref":655},"startPos":1639,"endPos":1670,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.Property","id":655,"sourceAnchor":{"ref":654},"comments":[],"incomingImports":[],"name":"totalPages","decorators":[],"incomingAccesses":[{"ref":2683}],"declaredType":{"ref":653},"readOnly":false,"isClassSide":false,"parentType":{"ref":639},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":656,"element":{"ref":657},"startPos":1673,"endPos":1707,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.Type","id":657,"sourceAnchor":{"ref":656},"comments":[],"incomingImports":[],"name":"import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/core/models/loading-state.model\").LoadingState","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":639},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":658,"element":{"ref":659},"startPos":1673,"endPos":1707,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.Property","id":659,"sourceAnchor":{"ref":658},"comments":[],"incomingImports":[],"name":"loading","decorators":[],"incomingAccesses":[{"ref":2684}],"declaredType":{"ref":657},"readOnly":false,"isClassSide":false,"parentType":{"ref":639},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":660,"element":{"ref":661},"startPos":1710,"endPos":1738,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.Type","id":661,"sourceAnchor":{"ref":660},"comments":[],"incomingImports":[],"name":"typeof import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/core/models/loading-state.model\").LoadingState","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":639},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":662,"element":{"ref":663},"startPos":1710,"endPos":1738,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.Property","id":663,"sourceAnchor":{"ref":662},"comments":[],"incomingImports":[],"name":"LoadingState","decorators":[],"incomingAccesses":[],"declaredType":{"ref":661},"readOnly":false,"isClassSide":false,"parentType":{"ref":639},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":664,"element":{"ref":665},"startPos":1741,"endPos":1773,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.Property","id":665,"sourceAnchor":{"ref":664},"comments":[],"incomingImports":[],"name":"destroyRef","decorators":[],"incomingAccesses":[{"ref":2685}],"declaredType":{"ref":9},"readOnly":false,"isClassSide":false,"parentType":{"ref":639},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":666,"element":{"ref":667},"startPos":1777,"endPos":1801,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.Property","id":667,"sourceAnchor":{"ref":666},"comments":[],"incomingImports":[],"name":"limit","decorators":[{"ref":669}],"incomingAccesses":[{"ref":2686}],"declaredType":{"ref":335},"readOnly":false,"isClassSide":false,"parentType":{"ref":639},"visibility":"","isDefinitelyAssigned":true},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":668,"element":{"ref":669},"startPos":1777,"endPos":1785,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.Decorator","id":669,"sourceAnchor":{"ref":668},"comments":[],"incomingImports":[],"name":"@Input","decorators":[],"expression":"Input()","decoratedEntity":{"ref":667}},{"FM3":"FamixTypeScript.Method","id":670,"sourceAnchor":{"ref":671},"comments":[],"incomingImports":[],"name":"setPageTo","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":2,"numberOfLinesOfCode":3,"types":[],"functions":[],"localVariables":[],"signature":"setPageTo(pageNumber: number)","parameters":[{"ref":673}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5},"parentType":{"ref":639},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":671,"element":{"ref":670},"startPos":2024,"endPos":2115,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":672,"element":{"ref":673},"startPos":2034,"endPos":2052,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":673,"sourceAnchor":{"ref":672},"comments":[],"incomingImports":[],"name":"pageNumber","decorators":[],"incomingAccesses":[{"ref":2687}],"declaredType":{"ref":335},"parentBehaviouralEntity":{"ref":670}},{"FM3":"FamixTypeScript.Method","id":674,"sourceAnchor":{"ref":675},"comments":[],"incomingImports":[],"name":"runQuery","decorators":[],"cyclomaticComplexity":2,"numberOfStatements":4,"numberOfLinesOfCode":23,"types":[],"functions":[{"ref":677},{"ref":687}],"localVariables":[],"signature":"runQuery()","parameters":[],"numberOfParameters":0,"incomingInvocations":[{"ref":2894},{"ref":2895},{"ref":2896}],"declaredType":{"ref":5},"parentType":{"ref":639},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":675,"element":{"ref":674},"startPos":2119,"endPos":2857,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":676,"element":{"ref":677},"startPos":2511,"endPos":2851,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":677,"sourceAnchor":{"ref":676},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":3,"numberOfLinesOfCode":9,"types":[],"functions":[{"ref":681}],"localVariables":[],"signature":"(data) => void","parameters":[{"ref":679}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":678,"element":{"ref":679},"startPos":2512,"endPos":2516,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":679,"sourceAnchor":{"ref":678},"comments":[],"incomingImports":[],"name":"data","decorators":[],"incomingAccesses":[{"ref":2688}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":677}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":680,"element":{"ref":681},"startPos":2806,"endPos":2831,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":681,"sourceAnchor":{"ref":680},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(val, index) => number","parameters":[{"ref":683},{"ref":685}],"numberOfParameters":2,"incomingInvocations":[],"declaredType":{"ref":335}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":682,"element":{"ref":683},"startPos":2807,"endPos":2810,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":683,"sourceAnchor":{"ref":682},"comments":[],"incomingImports":[],"name":"val","decorators":[],"incomingAccesses":[],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":681}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":684,"element":{"ref":685},"startPos":2812,"endPos":2817,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":685,"sourceAnchor":{"ref":684},"comments":[],"incomingImports":[],"name":"index","decorators":[],"incomingAccesses":[{"ref":2689}],"declaredType":{"ref":335},"parentBehaviouralEntity":{"ref":681}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":686,"element":{"ref":687},"startPos":2806,"endPos":2831,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":687,"sourceAnchor":{"ref":686},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(val, index) => number","parameters":[{"ref":689},{"ref":691}],"numberOfParameters":2,"incomingInvocations":[],"declaredType":{"ref":335}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":688,"element":{"ref":689},"startPos":2807,"endPos":2810,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":689,"sourceAnchor":{"ref":688},"comments":[],"incomingImports":[],"name":"val","decorators":[],"incomingAccesses":[],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":687}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":690,"element":{"ref":691},"startPos":2812,"endPos":2817,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":691,"sourceAnchor":{"ref":690},"comments":[],"incomingImports":[],"name":"index","decorators":[],"incomingAccesses":[{"ref":2690}],"declaredType":{"ref":335},"parentBehaviouralEntity":{"ref":687}},{"FM3":"FamixTypeScript.Method","id":692,"sourceAnchor":{"ref":695},"comments":[],"incomingImports":[],"name":"constructor","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[{"ref":697}],"functions":[],"localVariables":[],"signature":"constructor(private articlesService: ArticlesService)","parameters":[{"ref":699}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":694},"parentType":{"ref":639},"kind":"constructor","isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":693,"element":{"ref":694},"startPos":1964,"endPos":2020,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.Type","id":694,"sourceAnchor":{"ref":693},"comments":[],"incomingImports":[],"name":"import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/article/components/article-list.component\").ArticleListComponent","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":639},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":695,"element":{"ref":692},"startPos":1964,"endPos":2020,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":696,"element":{"ref":697},"startPos":1976,"endPos":2016,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.Type","id":697,"sourceAnchor":{"ref":696},"comments":[],"incomingImports":[],"name":"import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/article/services/articles.service\").ArticlesService","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":692},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":698,"element":{"ref":699},"startPos":1976,"endPos":2016,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":699,"sourceAnchor":{"ref":698},"comments":[],"incomingImports":[],"name":"articlesService","decorators":[],"incomingAccesses":[{"ref":2691}],"declaredType":{"ref":697},"parentBehaviouralEntity":{"ref":692}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":700,"element":{"ref":701},"startPos":2863,"endPos":2904,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.Property","id":701,"sourceAnchor":{"ref":700},"comments":[],"incomingImports":[],"name":"articlesService","decorators":[],"incomingAccesses":[],"declaredType":{"ref":697},"readOnly":false,"isClassSide":false,"parentType":{"ref":639},"visibility":"private"},{"FM3":"FamixTypeScript.Accessor","id":702,"sourceAnchor":{"ref":703},"comments":[],"incomingImports":[],"name":"config","decorators":[{"ref":707}],"cyclomaticComplexity":2,"numberOfStatements":1,"numberOfLinesOfCode":7,"types":[],"functions":[],"localVariables":[],"signature":"@Input()\n set config(config: ArticleListConfig)","parameters":[{"ref":705}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5},"parentType":{"ref":639},"kind":"setter","isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":703,"element":{"ref":702},"startPos":1804,"endPos":1960,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":704,"element":{"ref":705},"startPos":1826,"endPos":1851,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":705,"sourceAnchor":{"ref":704},"comments":[],"incomingImports":[],"name":"config","decorators":[],"incomingAccesses":[{"ref":2692}],"declaredType":{"ref":643},"parentBehaviouralEntity":{"ref":702}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":706,"element":{"ref":707},"startPos":1804,"endPos":1812,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.Decorator","id":707,"sourceAnchor":{"ref":706},"comments":[],"incomingImports":[],"name":"@Input","decorators":[],"expression":"Input()","decoratedEntity":{"ref":702}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":708,"element":{"ref":709},"startPos":2511,"endPos":2851,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":709,"sourceAnchor":{"ref":708},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":3,"numberOfLinesOfCode":9,"types":[],"functions":[{"ref":713}],"localVariables":[],"signature":"(data) => void","parameters":[{"ref":711}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":710,"element":{"ref":711},"startPos":2512,"endPos":2516,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":711,"sourceAnchor":{"ref":710},"comments":[],"incomingImports":[],"name":"data","decorators":[],"incomingAccesses":[{"ref":2693}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":709}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":712,"element":{"ref":713},"startPos":2806,"endPos":2831,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":713,"sourceAnchor":{"ref":712},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(val, index) => number","parameters":[{"ref":715},{"ref":717}],"numberOfParameters":2,"incomingInvocations":[],"declaredType":{"ref":335}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":714,"element":{"ref":715},"startPos":2807,"endPos":2810,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":715,"sourceAnchor":{"ref":714},"comments":[],"incomingImports":[],"name":"val","decorators":[],"incomingAccesses":[],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":713}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":716,"element":{"ref":717},"startPos":2812,"endPos":2817,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":717,"sourceAnchor":{"ref":716},"comments":[],"incomingImports":[],"name":"index","decorators":[],"incomingAccesses":[{"ref":2694}],"declaredType":{"ref":335},"parentBehaviouralEntity":{"ref":713}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":718,"element":{"ref":719},"startPos":2806,"endPos":2831,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":719,"sourceAnchor":{"ref":718},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(val, index) => number","parameters":[{"ref":721},{"ref":723}],"numberOfParameters":2,"incomingInvocations":[],"declaredType":{"ref":335}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":720,"element":{"ref":721},"startPos":2807,"endPos":2810,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":721,"sourceAnchor":{"ref":720},"comments":[],"incomingImports":[],"name":"val","decorators":[],"incomingAccesses":[],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":719}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":722,"element":{"ref":723},"startPos":2812,"endPos":2817,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":723,"sourceAnchor":{"ref":722},"comments":[],"incomingImports":[],"name":"index","decorators":[],"incomingAccesses":[{"ref":2695}],"declaredType":{"ref":335},"parentBehaviouralEntity":{"ref":719}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":724,"element":{"ref":725},"startPos":1,"endPos":922,"fileName":"src/app/features/article/components/article-meta.component.ts"},{"FM3":"FamixTypeScript.Module","id":725,"sourceAnchor":{"ref":724},"comments":[],"incomingImports":[],"name":"article-meta.component.ts","decorators":[],"types":[{"ref":727}],"functions":[],"localVariables":[],"outgoingImports":[{"ref":2037},{"ref":2041},{"ref":2045},{"ref":2046},{"ref":2050},{"ref":2054}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":726,"element":{"ref":727},"startPos":218,"endPos":921,"fileName":"src/app/features/article/components/article-meta.component.ts"},{"FM3":"FamixTypeScript.Class","id":727,"sourceAnchor":{"ref":726},"comments":[],"incomingImports":[],"name":"ArticleMetaComponent","decorators":[{"ref":729}],"types":[{"ref":731}],"functions":[],"localVariables":[],"incomingReferences":[],"isAbstract":false,"attributes":[{"ref":733}],"methods":[],"superInheritances":[],"subInheritances":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":728,"element":{"ref":729},"startPos":218,"endPos":853,"fileName":"src/app/features/article/components/article-meta.component.ts"},{"FM3":"FamixTypeScript.Decorator","id":729,"sourceAnchor":{"ref":728},"comments":[],"incomingImports":[],"name":"@Component","decorators":[],"expression":"Component({\n selector: \"app-article-meta\",\n template: `\n <div class=\"article-meta\">\n <a [routerLink]=\"['/profile', article.author.username]\">\n <img [src]=\"article.author.image\" />\n </a>\n\n <div class=\"info\">\n <a class=\"author\" [routerLink]=\"['/profile', article.author.username]\">\n {{ article.author.username }}\n </a>\n <span class=\"date\">\n {{ article.createdAt | date: \"longDate\" }}\n </span>\n </div>\n\n <ng-content></ng-content>\n </div>\n `,\n changeDetection: ChangeDetectionStrategy.OnPush,\n imports: [RouterLink, DatePipe],\n standalone: true,\n})","decoratedEntity":{"ref":727}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":730,"element":{"ref":731},"startPos":892,"endPos":919,"fileName":"src/app/features/article/components/article-meta.component.ts"},{"FM3":"FamixTypeScript.Type","id":731,"sourceAnchor":{"ref":730},"comments":[],"incomingImports":[],"name":"import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/article/models/article.model\").Article","decorators":[{"ref":735}],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":727},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":732,"element":{"ref":733},"startPos":892,"endPos":919,"fileName":"src/app/features/article/components/article-meta.component.ts"},{"FM3":"FamixTypeScript.Property","id":733,"sourceAnchor":{"ref":732},"comments":[],"incomingImports":[],"name":"article","decorators":[{"ref":735}],"incomingAccesses":[],"declaredType":{"ref":731},"readOnly":false,"isClassSide":false,"parentType":{"ref":727},"visibility":"","isDefinitelyAssigned":true},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":734,"element":{"ref":735},"startPos":892,"endPos":900,"fileName":"src/app/features/article/components/article-meta.component.ts"},{"FM3":"FamixTypeScript.Decorator","id":735,"sourceAnchor":{"ref":734},"comments":[],"incomingImports":[],"name":"@Input","decorators":[],"expression":"Input()","decoratedEntity":{"ref":733}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":736,"element":{"ref":737},"startPos":1,"endPos":1512,"fileName":"src/app/features/article/components/article-preview.component.ts"},{"FM3":"FamixTypeScript.Module","id":737,"sourceAnchor":{"ref":736},"comments":[],"incomingImports":[],"name":"article-preview.component.ts","decorators":[],"types":[{"ref":739}],"functions":[],"localVariables":[],"outgoingImports":[{"ref":2058},{"ref":2062},{"ref":2063},{"ref":2066},{"ref":2070},{"ref":2074},{"ref":2077}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":738,"element":{"ref":739},"startPos":328,"endPos":1511,"fileName":"src/app/features/article/components/article-preview.component.ts"},{"FM3":"FamixTypeScript.Class","id":739,"sourceAnchor":{"ref":738},"comments":[],"incomingImports":[],"name":"ArticlePreviewComponent","decorators":[{"ref":741}],"types":[],"functions":[],"localVariables":[],"incomingReferences":[],"isAbstract":false,"attributes":[{"ref":743}],"methods":[{"ref":746}],"superInheritances":[],"subInheritances":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":740,"element":{"ref":741},"startPos":328,"endPos":1235,"fileName":"src/app/features/article/components/article-preview.component.ts"},{"FM3":"FamixTypeScript.Decorator","id":741,"sourceAnchor":{"ref":740},"comments":[],"incomingImports":[],"name":"@Component","decorators":[],"expression":"Component({\n selector: \"app-article-preview\",\n template: `\n <div class=\"article-preview\">\n <app-article-meta [article]=\"article\">\n <app-favorite-button\n [article]=\"article\"\n (toggle)=\"toggleFavorite($event)\"\n class=\"pull-xs-right\"\n >\n {{ article.favoritesCount }}\n </app-favorite-button>\n </app-article-meta>\n\n <a [routerLink]=\"['/article', article.slug]\" class=\"preview-link\">\n <h1>{{ article.title }}</h1>\n <p>{{ article.description }}</p>\n <span>Read more...</span>\n <ul class=\"tag-list\">\n @for (tag of article.tagList; track tag) {\n <li class=\"tag-default tag-pill tag-outline\">\n {{ tag }}\n </li>\n }\n </ul>\n </a>\n </div>\n `,\n imports: [ArticleMetaComponent, FavoriteButtonComponent, RouterLink, NgForOf],\n standalone: true,\n})","decoratedEntity":{"ref":739}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":742,"element":{"ref":743},"startPos":1277,"endPos":1304,"fileName":"src/app/features/article/components/article-preview.component.ts"},{"FM3":"FamixTypeScript.Property","id":743,"sourceAnchor":{"ref":742},"comments":[],"incomingImports":[],"name":"article","decorators":[{"ref":745}],"incomingAccesses":[{"ref":2696}],"declaredType":{"ref":731},"readOnly":false,"isClassSide":false,"parentType":{"ref":739},"visibility":"","isDefinitelyAssigned":true},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":744,"element":{"ref":745},"startPos":1277,"endPos":1285,"fileName":"src/app/features/article/components/article-preview.component.ts"},{"FM3":"FamixTypeScript.Decorator","id":745,"sourceAnchor":{"ref":744},"comments":[],"incomingImports":[],"name":"@Input","decorators":[],"expression":"Input()","decoratedEntity":{"ref":743}},{"FM3":"FamixTypeScript.Method","id":746,"sourceAnchor":{"ref":747},"comments":[],"incomingImports":[],"name":"toggleFavorite","decorators":[],"cyclomaticComplexity":2,"numberOfStatements":2,"numberOfLinesOfCode":8,"types":[],"functions":[],"localVariables":[],"signature":"toggleFavorite(favorited: boolean): void","parameters":[{"ref":749}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5},"parentType":{"ref":739},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":747,"element":{"ref":746},"startPos":1308,"endPos":1509,"fileName":"src/app/features/article/components/article-preview.component.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":748,"element":{"ref":749},"startPos":1323,"endPos":1341,"fileName":"src/app/features/article/components/article-preview.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":749,"sourceAnchor":{"ref":748},"comments":[],"incomingImports":[],"name":"favorited","decorators":[],"incomingAccesses":[{"ref":2697}],"declaredType":{"ref":63},"parentBehaviouralEntity":{"ref":746}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":750,"element":{"ref":751},"startPos":1,"endPos":1993,"fileName":"src/app/features/article/components/favorite-button.component.ts"},{"FM3":"FamixTypeScript.Module","id":751,"sourceAnchor":{"ref":750},"comments":[],"incomingImports":[],"name":"favorite-button.component.ts","decorators":[],"types":[{"ref":753}],"functions":[{"ref":795},{"ref":799},{"ref":801}],"localVariables":[],"outgoingImports":[{"ref":2081},{"ref":2085},{"ref":2089},{"ref":2093},{"ref":2097},{"ref":2101},{"ref":2105},{"ref":2109},{"ref":2113},{"ref":2117},{"ref":2118},{"ref":2119},{"ref":2120},{"ref":2124}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":752,"element":{"ref":753},"startPos":485,"endPos":1992,"fileName":"src/app/features/article/components/favorite-button.component.ts"},{"FM3":"FamixTypeScript.Class","id":753,"sourceAnchor":{"ref":752},"comments":[],"incomingImports":[],"name":"FavoriteButtonComponent","decorators":[{"ref":755}],"types":[{"ref":780}],"functions":[],"localVariables":[],"incomingReferences":[],"isAbstract":false,"attributes":[{"ref":757},{"ref":759},{"ref":761},{"ref":765},{"ref":785},{"ref":789},{"ref":793}],"methods":[{"ref":768},{"ref":778}],"superInheritances":[],"subInheritances":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":754,"element":{"ref":755},"startPos":485,"endPos":896,"fileName":"src/app/features/article/components/favorite-button.component.ts"},{"FM3":"FamixTypeScript.Decorator","id":755,"sourceAnchor":{"ref":754},"comments":[],"incomingImports":[],"name":"@Component","decorators":[],"expression":"Component({\n selector: \"app-favorite-button\",\n template: `\n <button\n class=\"btn btn-sm\"\n [ngClass]=\"{\n disabled: isSubmitting,\n 'btn-outline-primary': !article.favorited,\n 'btn-primary': article.favorited\n }\"\n (click)=\"toggleFavorite()\"\n >\n <i class=\"ion-heart\"></i> <ng-content></ng-content>\n </button>\n `,\n imports: [NgClass],\n standalone: true,\n})","decoratedEntity":{"ref":753}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":756,"element":{"ref":757},"startPos":938,"endPos":970,"fileName":"src/app/features/article/components/favorite-button.component.ts"},{"FM3":"FamixTypeScript.Property","id":757,"sourceAnchor":{"ref":756},"comments":[],"incomingImports":[],"name":"destroyRef","decorators":[{"ref":763},{"ref":767}],"incomingAccesses":[{"ref":2698}],"declaredType":{"ref":9},"readOnly":false,"isClassSide":false,"parentType":{"ref":753},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":758,"element":{"ref":759},"startPos":973,"endPos":994,"fileName":"src/app/features/article/components/favorite-button.component.ts"},{"FM3":"FamixTypeScript.Property","id":759,"sourceAnchor":{"ref":758},"comments":[],"incomingImports":[],"name":"isSubmitting","decorators":[],"incomingAccesses":[{"ref":2699}],"declaredType":{"ref":63},"readOnly":false,"isClassSide":false,"parentType":{"ref":753},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":760,"element":{"ref":761},"startPos":998,"endPos":1025,"fileName":"src/app/features/article/components/favorite-button.component.ts"},{"FM3":"FamixTypeScript.Property","id":761,"sourceAnchor":{"ref":760},"comments":[],"incomingImports":[],"name":"article","decorators":[{"ref":763}],"incomingAccesses":[{"ref":2700}],"declaredType":{"ref":731},"readOnly":false,"isClassSide":false,"parentType":{"ref":753},"visibility":"","isDefinitelyAssigned":true},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":762,"element":{"ref":763},"startPos":998,"endPos":1006,"fileName":"src/app/features/article/components/favorite-button.component.ts"},{"FM3":"FamixTypeScript.Decorator","id":763,"sourceAnchor":{"ref":762},"comments":[],"incomingImports":[],"name":"@Input","decorators":[],"expression":"Input()","decoratedEntity":{"ref":761}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":764,"element":{"ref":765},"startPos":1028,"endPos":1075,"fileName":"src/app/features/article/components/favorite-button.component.ts"},{"FM3":"FamixTypeScript.Property","id":765,"sourceAnchor":{"ref":764},"comments":[],"incomingImports":[],"name":"toggle","decorators":[{"ref":767}],"incomingAccesses":[{"ref":2701}],"declaredType":{"ref":9},"readOnly":false,"isClassSide":false,"parentType":{"ref":753},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":766,"element":{"ref":767},"startPos":1028,"endPos":1037,"fileName":"src/app/features/article/components/favorite-button.component.ts"},{"FM3":"FamixTypeScript.Decorator","id":767,"sourceAnchor":{"ref":766},"comments":[],"incomingImports":[],"name":"@Output","decorators":[],"expression":"Output()","decoratedEntity":{"ref":765}},{"FM3":"FamixTypeScript.Method","id":768,"sourceAnchor":{"ref":769},"comments":[],"incomingImports":[],"name":"toggleFavorite","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":2,"numberOfLinesOfCode":26,"types":[],"functions":[{"ref":771},{"ref":775},{"ref":777}],"localVariables":[],"signature":"toggleFavorite(): void","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":5},"parentType":{"ref":753},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":769,"element":{"ref":768},"startPos":1240,"endPos":1990,"fileName":"src/app/features/article/components/favorite-button.component.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":770,"element":{"ref":771},"startPos":1364,"endPos":1729,"fileName":"src/app/features/article/components/favorite-button.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":771,"sourceAnchor":{"ref":770},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":2,"numberOfLinesOfCode":11,"types":[],"functions":[],"localVariables":[],"signature":"(authenticated) => any","parameters":[{"ref":773}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":772,"element":{"ref":773},"startPos":1365,"endPos":1378,"fileName":"src/app/features/article/components/favorite-button.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":773,"sourceAnchor":{"ref":772},"comments":[],"incomingImports":[],"name":"authenticated","decorators":[],"incomingAccesses":[{"ref":2702}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":771}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":774,"element":{"ref":775},"startPos":1818,"endPos":1925,"fileName":"src/app/features/article/components/favorite-button.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":775,"sourceAnchor":{"ref":774},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":2,"numberOfLinesOfCode":3,"types":[],"functions":[],"localVariables":[],"signature":"() => void","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":776,"element":{"ref":777},"startPos":1942,"endPos":1975,"fileName":"src/app/features/article/components/favorite-button.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":777,"sourceAnchor":{"ref":776},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"() => boolean","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":63}},{"FM3":"FamixTypeScript.Method","id":778,"sourceAnchor":{"ref":781},"comments":[],"incomingImports":[],"name":"constructor","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":4,"types":[],"functions":[],"localVariables":[],"signature":"constructor(\n private readonly articleService: ArticlesService,\n private readonly router: Router,\n private readonly userService: UserService,\n )","parameters":[{"ref":783},{"ref":787},{"ref":791}],"numberOfParameters":3,"incomingInvocations":[],"declaredType":{"ref":780},"parentType":{"ref":753},"kind":"constructor","isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":779,"element":{"ref":780},"startPos":1079,"endPos":1236,"fileName":"src/app/features/article/components/favorite-button.component.ts"},{"FM3":"FamixTypeScript.Type","id":780,"sourceAnchor":{"ref":779},"comments":[],"incomingImports":[],"name":"import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/article/components/favorite-button.component\").FavoriteButtonComponent","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":753},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":781,"element":{"ref":778},"startPos":1079,"endPos":1236,"fileName":"src/app/features/article/components/favorite-button.component.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":782,"element":{"ref":783},"startPos":1096,"endPos":1144,"fileName":"src/app/features/article/components/favorite-button.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":783,"sourceAnchor":{"ref":782},"comments":[],"incomingImports":[],"name":"articleService","decorators":[],"incomingAccesses":[{"ref":2703}],"declaredType":{"ref":697},"parentBehaviouralEntity":{"ref":778}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":784,"element":{"ref":785},"startPos":1996,"endPos":2045,"fileName":"src/app/features/article/components/favorite-button.component.ts"},{"FM3":"FamixTypeScript.Property","id":785,"sourceAnchor":{"ref":784},"comments":[],"incomingImports":[],"name":"articleService","decorators":[],"incomingAccesses":[],"declaredType":{"ref":697},"readOnly":true,"isClassSide":false,"parentType":{"ref":753},"visibility":"private"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":786,"element":{"ref":787},"startPos":1150,"endPos":1181,"fileName":"src/app/features/article/components/favorite-button.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":787,"sourceAnchor":{"ref":786},"comments":[],"incomingImports":[],"name":"router","decorators":[],"incomingAccesses":[{"ref":2704}],"declaredType":{"ref":169},"parentBehaviouralEntity":{"ref":778}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":788,"element":{"ref":789},"startPos":1996,"endPos":2028,"fileName":"src/app/features/article/components/favorite-button.component.ts"},{"FM3":"FamixTypeScript.Property","id":789,"sourceAnchor":{"ref":788},"comments":[],"incomingImports":[],"name":"router","decorators":[],"incomingAccesses":[],"declaredType":{"ref":169},"readOnly":true,"isClassSide":false,"parentType":{"ref":753},"visibility":"private"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":790,"element":{"ref":791},"startPos":1187,"endPos":1228,"fileName":"src/app/features/article/components/favorite-button.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":791,"sourceAnchor":{"ref":790},"comments":[],"incomingImports":[],"name":"userService","decorators":[],"incomingAccesses":[{"ref":2705}],"declaredType":{"ref":33},"parentBehaviouralEntity":{"ref":778}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":792,"element":{"ref":793},"startPos":1996,"endPos":2038,"fileName":"src/app/features/article/components/favorite-button.component.ts"},{"FM3":"FamixTypeScript.Property","id":793,"sourceAnchor":{"ref":792},"comments":[],"incomingImports":[],"name":"userService","decorators":[],"incomingAccesses":[],"declaredType":{"ref":33},"readOnly":true,"isClassSide":false,"parentType":{"ref":753},"visibility":"private"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":794,"element":{"ref":795},"startPos":1364,"endPos":1729,"fileName":"src/app/features/article/components/favorite-button.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":795,"sourceAnchor":{"ref":794},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":2,"numberOfLinesOfCode":11,"types":[],"functions":[],"localVariables":[],"signature":"(authenticated) => any","parameters":[{"ref":797}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":796,"element":{"ref":797},"startPos":1365,"endPos":1378,"fileName":"src/app/features/article/components/favorite-button.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":797,"sourceAnchor":{"ref":796},"comments":[],"incomingImports":[],"name":"authenticated","decorators":[],"incomingAccesses":[{"ref":2706}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":795}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":798,"element":{"ref":799},"startPos":1818,"endPos":1925,"fileName":"src/app/features/article/components/favorite-button.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":799,"sourceAnchor":{"ref":798},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":2,"numberOfLinesOfCode":3,"types":[],"functions":[],"localVariables":[],"signature":"() => void","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":800,"element":{"ref":801},"startPos":1942,"endPos":1975,"fileName":"src/app/features/article/components/favorite-button.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":801,"sourceAnchor":{"ref":800},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"() => boolean","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":63}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":802,"element":{"ref":803},"startPos":1,"endPos":179,"fileName":"src/app/features/article/models/article-list-config.model.ts"},{"FM3":"FamixTypeScript.Module","id":803,"sourceAnchor":{"ref":802},"comments":[],"incomingImports":[],"name":"article-list-config.model.ts","decorators":[],"types":[{"ref":805}],"functions":[],"localVariables":[],"outgoingImports":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":804,"element":{"ref":805},"startPos":1,"endPos":178,"fileName":"src/app/features/article/models/article-list-config.model.ts"},{"FM3":"FamixTypeScript.Interface","id":805,"sourceAnchor":{"ref":804},"comments":[],"incomingImports":[],"name":"ArticleListConfig","decorators":[],"types":[{"ref":809}],"functions":[],"localVariables":[],"incomingReferences":[],"attributes":[{"ref":807},{"ref":811}],"methods":[],"superInheritances":[],"subInheritances":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":806,"element":{"ref":807},"startPos":40,"endPos":53,"fileName":"src/app/features/article/models/article-list-config.model.ts"},{"FM3":"FamixTypeScript.Property","id":807,"sourceAnchor":{"ref":806},"comments":[],"incomingImports":[],"name":"type","decorators":[],"incomingAccesses":[],"declaredType":{"ref":123},"readOnly":false,"isClassSide":false,"parentType":{"ref":805},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":808,"element":{"ref":809},"startPos":57,"endPos":176,"fileName":"src/app/features/article/models/article-list-config.model.ts"},{"FM3":"FamixTypeScript.Type","id":809,"sourceAnchor":{"ref":808},"comments":[],"incomingImports":[],"name":"{ tag?: string | undefined; author?: string | undefined; favorited?: string | undefined; limit?: number | undefined; offset?: number | undefined; }","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":805},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":810,"element":{"ref":811},"startPos":57,"endPos":176,"fileName":"src/app/features/article/models/article-list-config.model.ts"},{"FM3":"FamixTypeScript.Property","id":811,"sourceAnchor":{"ref":810},"comments":[],"incomingImports":[],"name":"filters","decorators":[],"incomingAccesses":[],"declaredType":{"ref":809},"readOnly":false,"isClassSide":false,"parentType":{"ref":805},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":812,"element":{"ref":813},"startPos":1,"endPos":295,"fileName":"src/app/features/article/models/article.model.ts"},{"FM3":"FamixTypeScript.Module","id":813,"sourceAnchor":{"ref":812},"comments":[],"incomingImports":[],"name":"article.model.ts","decorators":[],"types":[{"ref":815}],"functions":[],"localVariables":[],"outgoingImports":[{"ref":2127}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":814,"element":{"ref":815},"startPos":64,"endPos":294,"fileName":"src/app/features/article/models/article.model.ts"},{"FM3":"FamixTypeScript.Interface","id":815,"sourceAnchor":{"ref":814},"comments":[],"incomingImports":[],"name":"Article","decorators":[],"types":[{"ref":835}],"functions":[],"localVariables":[],"incomingReferences":[],"attributes":[{"ref":817},{"ref":819},{"ref":821},{"ref":823},{"ref":825},{"ref":827},{"ref":829},{"ref":831},{"ref":833},{"ref":837}],"methods":[],"superInheritances":[],"subInheritances":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":816,"element":{"ref":817},"startPos":93,"endPos":106,"fileName":"src/app/features/article/models/article.model.ts"},{"FM3":"FamixTypeScript.Property","id":817,"sourceAnchor":{"ref":816},"comments":[],"incomingImports":[],"name":"slug","decorators":[],"incomingAccesses":[],"declaredType":{"ref":123},"readOnly":false,"isClassSide":false,"parentType":{"ref":815},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":818,"element":{"ref":819},"startPos":109,"endPos":123,"fileName":"src/app/features/article/models/article.model.ts"},{"FM3":"FamixTypeScript.Property","id":819,"sourceAnchor":{"ref":818},"comments":[],"incomingImports":[],"name":"title","decorators":[],"incomingAccesses":[],"declaredType":{"ref":123},"readOnly":false,"isClassSide":false,"parentType":{"ref":815},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":820,"element":{"ref":821},"startPos":126,"endPos":146,"fileName":"src/app/features/article/models/article.model.ts"},{"FM3":"FamixTypeScript.Property","id":821,"sourceAnchor":{"ref":820},"comments":[],"incomingImports":[],"name":"description","decorators":[],"incomingAccesses":[],"declaredType":{"ref":123},"readOnly":false,"isClassSide":false,"parentType":{"ref":815},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":822,"element":{"ref":823},"startPos":149,"endPos":162,"fileName":"src/app/features/article/models/article.model.ts"},{"FM3":"FamixTypeScript.Property","id":823,"sourceAnchor":{"ref":822},"comments":[],"incomingImports":[],"name":"body","decorators":[],"incomingAccesses":[],"declaredType":{"ref":123},"readOnly":false,"isClassSide":false,"parentType":{"ref":815},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":824,"element":{"ref":825},"startPos":165,"endPos":183,"fileName":"src/app/features/article/models/article.model.ts"},{"FM3":"FamixTypeScript.Property","id":825,"sourceAnchor":{"ref":824},"comments":[],"incomingImports":[],"name":"tagList","decorators":[],"incomingAccesses":[],"declaredType":{"ref":461},"readOnly":false,"isClassSide":false,"parentType":{"ref":815},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":826,"element":{"ref":827},"startPos":186,"endPos":204,"fileName":"src/app/features/article/models/article.model.ts"},{"FM3":"FamixTypeScript.Property","id":827,"sourceAnchor":{"ref":826},"comments":[],"incomingImports":[],"name":"createdAt","decorators":[],"incomingAccesses":[],"declaredType":{"ref":123},"readOnly":false,"isClassSide":false,"parentType":{"ref":815},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":828,"element":{"ref":829},"startPos":207,"endPos":225,"fileName":"src/app/features/article/models/article.model.ts"},{"FM3":"FamixTypeScript.Property","id":829,"sourceAnchor":{"ref":828},"comments":[],"incomingImports":[],"name":"updatedAt","decorators":[],"incomingAccesses":[],"declaredType":{"ref":123},"readOnly":false,"isClassSide":false,"parentType":{"ref":815},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":830,"element":{"ref":831},"startPos":228,"endPos":247,"fileName":"src/app/features/article/models/article.model.ts"},{"FM3":"FamixTypeScript.Property","id":831,"sourceAnchor":{"ref":830},"comments":[],"incomingImports":[],"name":"favorited","decorators":[],"incomingAccesses":[],"declaredType":{"ref":63},"readOnly":false,"isClassSide":false,"parentType":{"ref":815},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":832,"element":{"ref":833},"startPos":250,"endPos":273,"fileName":"src/app/features/article/models/article.model.ts"},{"FM3":"FamixTypeScript.Property","id":833,"sourceAnchor":{"ref":832},"comments":[],"incomingImports":[],"name":"favoritesCount","decorators":[],"incomingAccesses":[],"declaredType":{"ref":335},"readOnly":false,"isClassSide":false,"parentType":{"ref":815},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":834,"element":{"ref":835},"startPos":276,"endPos":292,"fileName":"src/app/features/article/models/article.model.ts"},{"FM3":"FamixTypeScript.Type","id":835,"sourceAnchor":{"ref":834},"comments":[],"incomingImports":[],"name":"import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/profile/models/profile.model\").Profile","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":815},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":836,"element":{"ref":837},"startPos":276,"endPos":292,"fileName":"src/app/features/article/models/article.model.ts"},{"FM3":"FamixTypeScript.Property","id":837,"sourceAnchor":{"ref":836},"comments":[],"incomingImports":[],"name":"author","decorators":[],"incomingAccesses":[],"declaredType":{"ref":835},"readOnly":false,"isClassSide":false,"parentType":{"ref":815},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":838,"element":{"ref":839},"startPos":1,"endPos":163,"fileName":"src/app/features/article/models/comment.model.ts"},{"FM3":"FamixTypeScript.Module","id":839,"sourceAnchor":{"ref":838},"comments":[],"incomingImports":[],"name":"comment.model.ts","decorators":[],"types":[{"ref":841}],"functions":[],"localVariables":[],"outgoingImports":[{"ref":2128}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":840,"element":{"ref":841},"startPos":64,"endPos":162,"fileName":"src/app/features/article/models/comment.model.ts"},{"FM3":"FamixTypeScript.Interface","id":841,"sourceAnchor":{"ref":840},"comments":[],"incomingImports":[],"name":"Comment","decorators":[],"types":[],"functions":[],"localVariables":[],"incomingReferences":[],"attributes":[{"ref":843},{"ref":845},{"ref":847},{"ref":849}],"methods":[],"superInheritances":[],"subInheritances":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":842,"element":{"ref":843},"startPos":93,"endPos":104,"fileName":"src/app/features/article/models/comment.model.ts"},{"FM3":"FamixTypeScript.Property","id":843,"sourceAnchor":{"ref":842},"comments":[],"incomingImports":[],"name":"id","decorators":[],"incomingAccesses":[],"declaredType":{"ref":123},"readOnly":false,"isClassSide":false,"parentType":{"ref":841},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":844,"element":{"ref":845},"startPos":107,"endPos":120,"fileName":"src/app/features/article/models/comment.model.ts"},{"FM3":"FamixTypeScript.Property","id":845,"sourceAnchor":{"ref":844},"comments":[],"incomingImports":[],"name":"body","decorators":[],"incomingAccesses":[],"declaredType":{"ref":123},"readOnly":false,"isClassSide":false,"parentType":{"ref":841},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":846,"element":{"ref":847},"startPos":123,"endPos":141,"fileName":"src/app/features/article/models/comment.model.ts"},{"FM3":"FamixTypeScript.Property","id":847,"sourceAnchor":{"ref":846},"comments":[],"incomingImports":[],"name":"createdAt","decorators":[],"incomingAccesses":[],"declaredType":{"ref":123},"readOnly":false,"isClassSide":false,"parentType":{"ref":841},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":848,"element":{"ref":849},"startPos":144,"endPos":160,"fileName":"src/app/features/article/models/comment.model.ts"},{"FM3":"FamixTypeScript.Property","id":849,"sourceAnchor":{"ref":848},"comments":[],"incomingImports":[],"name":"author","decorators":[],"incomingAccesses":[],"declaredType":{"ref":835},"readOnly":false,"isClassSide":false,"parentType":{"ref":841},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":850,"element":{"ref":851},"startPos":1,"endPos":1921,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.Module","id":851,"sourceAnchor":{"ref":850},"comments":[],"incomingImports":[],"name":"articles.service.ts","decorators":[],"types":[{"ref":853}],"functions":[{"ref":925},{"ref":929},{"ref":933},{"ref":937},{"ref":941}],"localVariables":[],"outgoingImports":[{"ref":2132},{"ref":2136},{"ref":2140},{"ref":2144},{"ref":2148},{"ref":2149},{"ref":2150}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":852,"element":{"ref":853},"startPos":306,"endPos":1920,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.Class","id":853,"sourceAnchor":{"ref":852},"comments":[],"incomingImports":[],"name":"ArticlesService","decorators":[{"ref":855}],"types":[{"ref":858},{"ref":860},{"ref":874},{"ref":884}],"functions":[],"localVariables":[],"incomingReferences":[],"isAbstract":false,"attributes":[{"ref":923}],"methods":[{"ref":856},{"ref":872},{"ref":882},{"ref":888},{"ref":898},{"ref":906},{"ref":914},{"ref":918}],"superInheritances":[],"subInheritances":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":854,"element":{"ref":855},"startPos":306,"endPos":341,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.Decorator","id":855,"sourceAnchor":{"ref":854},"comments":[],"incomingImports":[],"name":"@Injectable","decorators":[],"expression":"Injectable({ providedIn: \"root\" })","decoratedEntity":{"ref":853}},{"FM3":"FamixTypeScript.Method","id":856,"sourceAnchor":{"ref":861},"comments":[],"incomingImports":[],"name":"query","decorators":[],"cyclomaticComplexity":2,"numberOfStatements":3,"numberOfLinesOfCode":15,"types":[],"functions":[{"ref":869}],"localVariables":[{"ref":865}],"signature":"query(\n config: ArticleListConfig,\n ): Observable<","parameters":[{"ref":863}],"numberOfParameters":1,"incomingInvocations":[{"ref":2897}],"declaredType":{"ref":860},"parentType":{"ref":853},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":857,"element":{"ref":858},"startPos":428,"endPos":925,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.Type","id":858,"sourceAnchor":{"ref":857},"comments":[],"incomingImports":[],"name":"{ articles: import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/article/models/article.model\").Article[]; articlesCount: number; }","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":853},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":859,"element":{"ref":860},"startPos":428,"endPos":925,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.ParameterType","id":860,"sourceAnchor":{"ref":859},"comments":[],"incomingImports":[],"name":"Observable<{ articles: import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/article/models/article.model\").Article[]; articlesCount: number; }>","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":853},"incomingReferences":[],"baseType":{"ref":524},"arguments":[{"ref":858}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":861,"element":{"ref":856},"startPos":428,"endPos":925,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":862,"element":{"ref":863},"startPos":439,"endPos":464,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":863,"sourceAnchor":{"ref":862},"comments":[],"incomingImports":[],"name":"config","decorators":[],"incomingAccesses":[{"ref":2707}],"declaredType":{"ref":643},"parentBehaviouralEntity":{"ref":856}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":864,"element":{"ref":865},"startPos":601,"endPos":626,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.Variable","id":865,"sourceAnchor":{"ref":864},"comments":[{"ref":867}],"incomingImports":[],"name":"params","decorators":[],"incomingAccesses":[{"ref":2708}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":856}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":866,"element":{"ref":867},"startPos":536,"endPos":592,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.Comment","id":867,"sourceAnchor":{"ref":866},"comments":[],"isJSDoc":false,"commentedEntity":{"ref":865}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":868,"element":{"ref":869},"startPos":669,"endPos":758,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":869,"sourceAnchor":{"ref":868},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":1,"numberOfLinesOfCode":3,"types":[],"functions":[],"localVariables":[],"signature":"(key) => void","parameters":[{"ref":871}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":870,"element":{"ref":871},"startPos":670,"endPos":673,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":871,"sourceAnchor":{"ref":870},"comments":[],"incomingImports":[],"name":"key","decorators":[],"incomingAccesses":[{"ref":2709}],"declaredType":{"ref":123},"parentBehaviouralEntity":{"ref":869}},{"FM3":"FamixTypeScript.Method","id":872,"sourceAnchor":{"ref":875},"comments":[],"incomingImports":[],"name":"get","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":1,"numberOfLinesOfCode":4,"types":[],"functions":[{"ref":879}],"localVariables":[],"signature":"get(slug: string): Observable<Article>","parameters":[{"ref":877}],"numberOfParameters":1,"incomingInvocations":[{"ref":2898},{"ref":2899}],"declaredType":{"ref":874},"parentType":{"ref":853},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":873,"element":{"ref":874},"startPos":929,"endPos":1090,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.ParameterType","id":874,"sourceAnchor":{"ref":873},"comments":[],"incomingImports":[],"name":"Observable<import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/article/models/article.model\").Article>","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":853},"incomingReferences":[],"baseType":{"ref":524},"arguments":[{"ref":731}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":875,"element":{"ref":872},"startPos":929,"endPos":1090,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":876,"element":{"ref":877},"startPos":933,"endPos":945,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":877,"sourceAnchor":{"ref":876},"comments":[],"incomingImports":[],"name":"slug","decorators":[],"incomingAccesses":[{"ref":2710}],"declaredType":{"ref":123},"parentBehaviouralEntity":{"ref":872}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":878,"element":{"ref":879},"startPos":1061,"endPos":1083,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":879,"sourceAnchor":{"ref":878},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(data) => any","parameters":[{"ref":881}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":880,"element":{"ref":881},"startPos":1062,"endPos":1066,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":881,"sourceAnchor":{"ref":880},"comments":[],"incomingImports":[],"name":"data","decorators":[],"incomingAccesses":[{"ref":2711}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":879}},{"FM3":"FamixTypeScript.Method","id":882,"sourceAnchor":{"ref":885},"comments":[],"incomingImports":[],"name":"delete","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":1,"numberOfLinesOfCode":2,"types":[],"functions":[],"localVariables":[],"signature":"delete(slug: string): Observable<void>","parameters":[{"ref":887}],"numberOfParameters":1,"incomingInvocations":[{"ref":2900}],"declaredType":{"ref":884},"parentType":{"ref":853},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":883,"element":{"ref":884},"startPos":1094,"endPos":1194,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.ParameterType","id":884,"sourceAnchor":{"ref":883},"comments":[],"incomingImports":[],"name":"Observable<void>","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":853},"incomingReferences":[],"baseType":{"ref":524},"arguments":[{"ref":5}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":885,"element":{"ref":882},"startPos":1094,"endPos":1194,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":886,"element":{"ref":887},"startPos":1101,"endPos":1113,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":887,"sourceAnchor":{"ref":886},"comments":[],"incomingImports":[],"name":"slug","decorators":[],"incomingAccesses":[{"ref":2712}],"declaredType":{"ref":123},"parentBehaviouralEntity":{"ref":882}},{"FM3":"FamixTypeScript.Method","id":888,"sourceAnchor":{"ref":889},"comments":[],"incomingImports":[],"name":"create","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":1,"numberOfLinesOfCode":4,"types":[{"ref":891}],"functions":[{"ref":895}],"localVariables":[],"signature":"create(article: Partial<Article>): Observable<Article>","parameters":[{"ref":893}],"numberOfParameters":1,"incomingInvocations":[{"ref":2901}],"declaredType":{"ref":874},"parentType":{"ref":853},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":889,"element":{"ref":888},"startPos":1198,"endPos":1391,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":890,"element":{"ref":891},"startPos":1205,"endPos":1230,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.ParameterType","id":891,"sourceAnchor":{"ref":890},"comments":[],"incomingImports":[],"name":"Partial<import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/article/models/article.model\").Article>","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":888},"incomingReferences":[],"baseType":{"ref":559},"arguments":[{"ref":731}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":892,"element":{"ref":893},"startPos":1205,"endPos":1230,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":893,"sourceAnchor":{"ref":892},"comments":[],"incomingImports":[],"name":"article","decorators":[],"incomingAccesses":[{"ref":2713}],"declaredType":{"ref":891},"parentBehaviouralEntity":{"ref":888}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":894,"element":{"ref":895},"startPos":1362,"endPos":1384,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":895,"sourceAnchor":{"ref":894},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(data) => any","parameters":[{"ref":897}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":896,"element":{"ref":897},"startPos":1363,"endPos":1367,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":897,"sourceAnchor":{"ref":896},"comments":[],"incomingImports":[],"name":"data","decorators":[],"incomingAccesses":[{"ref":2714}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":895}},{"FM3":"FamixTypeScript.Method","id":898,"sourceAnchor":{"ref":899},"comments":[],"incomingImports":[],"name":"update","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":1,"numberOfLinesOfCode":6,"types":[],"functions":[{"ref":903}],"localVariables":[],"signature":"update(article: Partial<Article>): Observable<Article>","parameters":[{"ref":901}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":874},"parentType":{"ref":853},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":899,"element":{"ref":898},"startPos":1395,"endPos":1617,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":900,"element":{"ref":901},"startPos":1402,"endPos":1427,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":901,"sourceAnchor":{"ref":900},"comments":[],"incomingImports":[],"name":"article","decorators":[],"incomingAccesses":[{"ref":2715}],"declaredType":{"ref":891},"parentBehaviouralEntity":{"ref":898}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":902,"element":{"ref":903},"startPos":1588,"endPos":1610,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":903,"sourceAnchor":{"ref":902},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(data) => any","parameters":[{"ref":905}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":904,"element":{"ref":905},"startPos":1589,"endPos":1593,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":905,"sourceAnchor":{"ref":904},"comments":[],"incomingImports":[],"name":"data","decorators":[],"incomingAccesses":[{"ref":2716}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":903}},{"FM3":"FamixTypeScript.Method","id":906,"sourceAnchor":{"ref":907},"comments":[],"incomingImports":[],"name":"favorite","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":1,"numberOfLinesOfCode":4,"types":[],"functions":[{"ref":911}],"localVariables":[],"signature":"favorite(slug: string): Observable<Article>","parameters":[{"ref":909}],"numberOfParameters":1,"incomingInvocations":[{"ref":2902}],"declaredType":{"ref":874},"parentType":{"ref":853},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":907,"element":{"ref":906},"startPos":1621,"endPos":1801,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":908,"element":{"ref":909},"startPos":1630,"endPos":1642,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":909,"sourceAnchor":{"ref":908},"comments":[],"incomingImports":[],"name":"slug","decorators":[],"incomingAccesses":[{"ref":2717}],"declaredType":{"ref":123},"parentBehaviouralEntity":{"ref":906}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":910,"element":{"ref":911},"startPos":1772,"endPos":1794,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":911,"sourceAnchor":{"ref":910},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(data) => any","parameters":[{"ref":913}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":912,"element":{"ref":913},"startPos":1773,"endPos":1777,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":913,"sourceAnchor":{"ref":912},"comments":[],"incomingImports":[],"name":"data","decorators":[],"incomingAccesses":[{"ref":2718}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":911}},{"FM3":"FamixTypeScript.Method","id":914,"sourceAnchor":{"ref":915},"comments":[],"incomingImports":[],"name":"unfavorite","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":1,"numberOfLinesOfCode":2,"types":[],"functions":[],"localVariables":[],"signature":"unfavorite(slug: string): Observable<void>","parameters":[{"ref":917}],"numberOfParameters":1,"incomingInvocations":[{"ref":2903}],"declaredType":{"ref":884},"parentType":{"ref":853},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":915,"element":{"ref":914},"startPos":1805,"endPos":1918,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":916,"element":{"ref":917},"startPos":1816,"endPos":1828,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":917,"sourceAnchor":{"ref":916},"comments":[],"incomingImports":[],"name":"slug","decorators":[],"incomingAccesses":[{"ref":2719}],"declaredType":{"ref":123},"parentBehaviouralEntity":{"ref":914}},{"FM3":"FamixTypeScript.Method","id":918,"sourceAnchor":{"ref":919},"comments":[],"incomingImports":[],"name":"constructor","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"constructor(private readonly http: HttpClient)","parameters":[{"ref":921}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":697},"parentType":{"ref":853},"kind":"constructor","isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":919,"element":{"ref":918},"startPos":375,"endPos":424,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":920,"element":{"ref":921},"startPos":387,"endPos":420,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":921,"sourceAnchor":{"ref":920},"comments":[],"incomingImports":[],"name":"http","decorators":[],"incomingAccesses":[{"ref":2720},{"ref":2721},{"ref":2722},{"ref":2723},{"ref":2724},{"ref":2725},{"ref":2726}],"declaredType":{"ref":577},"parentBehaviouralEntity":{"ref":918}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":922,"element":{"ref":923},"startPos":1924,"endPos":1958,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.Property","id":923,"sourceAnchor":{"ref":922},"comments":[],"incomingImports":[],"name":"http","decorators":[],"incomingAccesses":[],"declaredType":{"ref":577},"readOnly":true,"isClassSide":false,"parentType":{"ref":853},"visibility":"private"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":924,"element":{"ref":925},"startPos":669,"endPos":758,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":925,"sourceAnchor":{"ref":924},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":1,"numberOfLinesOfCode":3,"types":[],"functions":[],"localVariables":[],"signature":"(key) => void","parameters":[{"ref":927}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":926,"element":{"ref":927},"startPos":670,"endPos":673,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":927,"sourceAnchor":{"ref":926},"comments":[],"incomingImports":[],"name":"key","decorators":[],"incomingAccesses":[{"ref":2727}],"declaredType":{"ref":123},"parentBehaviouralEntity":{"ref":925}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":928,"element":{"ref":929},"startPos":1061,"endPos":1083,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":929,"sourceAnchor":{"ref":928},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(data) => any","parameters":[{"ref":931}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":930,"element":{"ref":931},"startPos":1062,"endPos":1066,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":931,"sourceAnchor":{"ref":930},"comments":[],"incomingImports":[],"name":"data","decorators":[],"incomingAccesses":[{"ref":2728}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":929}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":932,"element":{"ref":933},"startPos":1362,"endPos":1384,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":933,"sourceAnchor":{"ref":932},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(data) => any","parameters":[{"ref":935}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":934,"element":{"ref":935},"startPos":1363,"endPos":1367,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":935,"sourceAnchor":{"ref":934},"comments":[],"incomingImports":[],"name":"data","decorators":[],"incomingAccesses":[{"ref":2729}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":933}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":936,"element":{"ref":937},"startPos":1588,"endPos":1610,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":937,"sourceAnchor":{"ref":936},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(data) => any","parameters":[{"ref":939}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":938,"element":{"ref":939},"startPos":1589,"endPos":1593,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":939,"sourceAnchor":{"ref":938},"comments":[],"incomingImports":[],"name":"data","decorators":[],"incomingAccesses":[{"ref":2730}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":937}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":940,"element":{"ref":941},"startPos":1772,"endPos":1794,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":941,"sourceAnchor":{"ref":940},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(data) => any","parameters":[{"ref":943}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":942,"element":{"ref":943},"startPos":1773,"endPos":1777,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":943,"sourceAnchor":{"ref":942},"comments":[],"incomingImports":[],"name":"data","decorators":[],"incomingAccesses":[{"ref":2731}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":941}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":944,"element":{"ref":945},"startPos":1,"endPos":909,"fileName":"src/app/features/article/services/comments.service.ts"},{"FM3":"FamixTypeScript.Module","id":945,"sourceAnchor":{"ref":944},"comments":[],"incomingImports":[],"name":"comments.service.ts","decorators":[],"types":[{"ref":947}],"functions":[{"ref":989},{"ref":993}],"localVariables":[],"outgoingImports":[{"ref":2154},{"ref":2158},{"ref":2162},{"ref":2166},{"ref":2167}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":946,"element":{"ref":947},"startPos":221,"endPos":908,"fileName":"src/app/features/article/services/comments.service.ts"},{"FM3":"FamixTypeScript.Class","id":947,"sourceAnchor":{"ref":946},"comments":[],"incomingImports":[],"name":"CommentsService","decorators":[{"ref":949}],"types":[{"ref":952},{"ref":954},{"ref":964},{"ref":982}],"functions":[],"localVariables":[],"incomingReferences":[],"isAbstract":false,"attributes":[{"ref":987}],"methods":[{"ref":950},{"ref":962},{"ref":974},{"ref":980}],"superInheritances":[],"subInheritances":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":948,"element":{"ref":949},"startPos":221,"endPos":256,"fileName":"src/app/features/article/services/comments.service.ts"},{"FM3":"FamixTypeScript.Decorator","id":949,"sourceAnchor":{"ref":948},"comments":[],"incomingImports":[],"name":"@Injectable","decorators":[],"expression":"Injectable({ providedIn: \"root\" })","decoratedEntity":{"ref":947}},{"FM3":"FamixTypeScript.Method","id":950,"sourceAnchor":{"ref":955},"comments":[],"incomingImports":[],"name":"getAll","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":1,"numberOfLinesOfCode":4,"types":[],"functions":[{"ref":959}],"localVariables":[],"signature":"getAll(slug: string): Observable<Comment[]>","parameters":[{"ref":957}],"numberOfParameters":1,"incomingInvocations":[{"ref":2904}],"declaredType":{"ref":954},"parentType":{"ref":947},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":951,"element":{"ref":952},"startPos":343,"endPos":522,"fileName":"src/app/features/article/services/comments.service.ts"},{"FM3":"FamixTypeScript.Type","id":952,"sourceAnchor":{"ref":951},"comments":[],"incomingImports":[],"name":"import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/article/models/comment.model\").Comment[]","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":947},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":953,"element":{"ref":954},"startPos":343,"endPos":522,"fileName":"src/app/features/article/services/comments.service.ts"},{"FM3":"FamixTypeScript.ParameterType","id":954,"sourceAnchor":{"ref":953},"comments":[],"incomingImports":[],"name":"Observable<import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/article/models/comment.model\").Comment[]>","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":947},"incomingReferences":[],"baseType":{"ref":524},"arguments":[{"ref":952}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":955,"element":{"ref":950},"startPos":343,"endPos":522,"fileName":"src/app/features/article/services/comments.service.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":956,"element":{"ref":957},"startPos":350,"endPos":362,"fileName":"src/app/features/article/services/comments.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":957,"sourceAnchor":{"ref":956},"comments":[],"incomingImports":[],"name":"slug","decorators":[],"incomingAccesses":[{"ref":2732}],"declaredType":{"ref":123},"parentBehaviouralEntity":{"ref":950}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":958,"element":{"ref":959},"startPos":492,"endPos":515,"fileName":"src/app/features/article/services/comments.service.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":959,"sourceAnchor":{"ref":958},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(data) => any","parameters":[{"ref":961}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":960,"element":{"ref":961},"startPos":493,"endPos":497,"fileName":"src/app/features/article/services/comments.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":961,"sourceAnchor":{"ref":960},"comments":[],"incomingImports":[],"name":"data","decorators":[],"incomingAccesses":[{"ref":2733}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":959}},{"FM3":"FamixTypeScript.Method","id":962,"sourceAnchor":{"ref":965},"comments":[],"incomingImports":[],"name":"add","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":1,"numberOfLinesOfCode":6,"types":[],"functions":[{"ref":971}],"localVariables":[],"signature":"add(slug: string, payload: string): Observable<Comment>","parameters":[{"ref":967},{"ref":969}],"numberOfParameters":2,"incomingInvocations":[{"ref":2905}],"declaredType":{"ref":964},"parentType":{"ref":947},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":963,"element":{"ref":964},"startPos":526,"endPos":761,"fileName":"src/app/features/article/services/comments.service.ts"},{"FM3":"FamixTypeScript.ParameterType","id":964,"sourceAnchor":{"ref":963},"comments":[],"incomingImports":[],"name":"Observable<import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/article/models/comment.model\").Comment>","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":947},"incomingReferences":[],"baseType":{"ref":524},"arguments":[{"ref":619}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":965,"element":{"ref":962},"startPos":526,"endPos":761,"fileName":"src/app/features/article/services/comments.service.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":966,"element":{"ref":967},"startPos":530,"endPos":542,"fileName":"src/app/features/article/services/comments.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":967,"sourceAnchor":{"ref":966},"comments":[],"incomingImports":[],"name":"slug","decorators":[],"incomingAccesses":[{"ref":2734}],"declaredType":{"ref":123},"parentBehaviouralEntity":{"ref":962}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":968,"element":{"ref":969},"startPos":544,"endPos":559,"fileName":"src/app/features/article/services/comments.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":969,"sourceAnchor":{"ref":968},"comments":[],"incomingImports":[],"name":"payload","decorators":[],"incomingAccesses":[{"ref":2735}],"declaredType":{"ref":123},"parentBehaviouralEntity":{"ref":962}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":970,"element":{"ref":971},"startPos":732,"endPos":754,"fileName":"src/app/features/article/services/comments.service.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":971,"sourceAnchor":{"ref":970},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(data) => any","parameters":[{"ref":973}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":972,"element":{"ref":973},"startPos":733,"endPos":737,"fileName":"src/app/features/article/services/comments.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":973,"sourceAnchor":{"ref":972},"comments":[],"incomingImports":[],"name":"data","decorators":[],"incomingAccesses":[{"ref":2736}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":971}},{"FM3":"FamixTypeScript.Method","id":974,"sourceAnchor":{"ref":975},"comments":[],"incomingImports":[],"name":"delete","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":1,"numberOfLinesOfCode":2,"types":[],"functions":[],"localVariables":[],"signature":"delete(commentId: string, slug: string): Observable<void>","parameters":[{"ref":977},{"ref":979}],"numberOfParameters":2,"incomingInvocations":[{"ref":2906}],"declaredType":{"ref":884},"parentType":{"ref":947},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":975,"element":{"ref":974},"startPos":765,"endPos":906,"fileName":"src/app/features/article/services/comments.service.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":976,"element":{"ref":977},"startPos":772,"endPos":789,"fileName":"src/app/features/article/services/comments.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":977,"sourceAnchor":{"ref":976},"comments":[],"incomingImports":[],"name":"commentId","decorators":[],"incomingAccesses":[{"ref":2737}],"declaredType":{"ref":123},"parentBehaviouralEntity":{"ref":974}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":978,"element":{"ref":979},"startPos":791,"endPos":803,"fileName":"src/app/features/article/services/comments.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":979,"sourceAnchor":{"ref":978},"comments":[],"incomingImports":[],"name":"slug","decorators":[],"incomingAccesses":[{"ref":2738}],"declaredType":{"ref":123},"parentBehaviouralEntity":{"ref":974}},{"FM3":"FamixTypeScript.Method","id":980,"sourceAnchor":{"ref":983},"comments":[],"incomingImports":[],"name":"constructor","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"constructor(private readonly http: HttpClient)","parameters":[{"ref":985}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":982},"parentType":{"ref":947},"kind":"constructor","isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":981,"element":{"ref":982},"startPos":290,"endPos":339,"fileName":"src/app/features/article/services/comments.service.ts"},{"FM3":"FamixTypeScript.Type","id":982,"sourceAnchor":{"ref":981},"comments":[],"incomingImports":[],"name":"import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/article/services/comments.service\").CommentsService","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":947},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":983,"element":{"ref":980},"startPos":290,"endPos":339,"fileName":"src/app/features/article/services/comments.service.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":984,"element":{"ref":985},"startPos":302,"endPos":335,"fileName":"src/app/features/article/services/comments.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":985,"sourceAnchor":{"ref":984},"comments":[],"incomingImports":[],"name":"http","decorators":[],"incomingAccesses":[{"ref":2739},{"ref":2740},{"ref":2741}],"declaredType":{"ref":577},"parentBehaviouralEntity":{"ref":980}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":986,"element":{"ref":987},"startPos":912,"endPos":946,"fileName":"src/app/features/article/services/comments.service.ts"},{"FM3":"FamixTypeScript.Property","id":987,"sourceAnchor":{"ref":986},"comments":[],"incomingImports":[],"name":"http","decorators":[],"incomingAccesses":[],"declaredType":{"ref":577},"readOnly":true,"isClassSide":false,"parentType":{"ref":947},"visibility":"private"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":988,"element":{"ref":989},"startPos":492,"endPos":515,"fileName":"src/app/features/article/services/comments.service.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":989,"sourceAnchor":{"ref":988},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(data) => any","parameters":[{"ref":991}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":990,"element":{"ref":991},"startPos":493,"endPos":497,"fileName":"src/app/features/article/services/comments.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":991,"sourceAnchor":{"ref":990},"comments":[],"incomingImports":[],"name":"data","decorators":[],"incomingAccesses":[{"ref":2742}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":989}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":992,"element":{"ref":993},"startPos":732,"endPos":754,"fileName":"src/app/features/article/services/comments.service.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":993,"sourceAnchor":{"ref":992},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(data) => any","parameters":[{"ref":995}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":994,"element":{"ref":995},"startPos":733,"endPos":737,"fileName":"src/app/features/article/services/comments.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":995,"sourceAnchor":{"ref":994},"comments":[],"incomingImports":[],"name":"data","decorators":[],"incomingAccesses":[{"ref":2743}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":993}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":996,"element":{"ref":997},"startPos":1,"endPos":427,"fileName":"src/app/features/article/services/tags.service.ts"},{"FM3":"FamixTypeScript.Module","id":997,"sourceAnchor":{"ref":996},"comments":[],"incomingImports":[],"name":"tags.service.ts","decorators":[],"types":[{"ref":999}],"functions":[{"ref":1019}],"localVariables":[],"outgoingImports":[{"ref":2171},{"ref":2175},{"ref":2179},{"ref":2183}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":998,"element":{"ref":999},"startPos":170,"endPos":426,"fileName":"src/app/features/article/services/tags.service.ts"},{"FM3":"FamixTypeScript.Class","id":999,"sourceAnchor":{"ref":998},"comments":[],"incomingImports":[],"name":"TagsService","decorators":[{"ref":1001}],"types":[{"ref":1004},{"ref":1012}],"functions":[],"localVariables":[],"incomingReferences":[],"isAbstract":false,"attributes":[{"ref":1017}],"methods":[{"ref":1002},{"ref":1010}],"superInheritances":[],"subInheritances":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1000,"element":{"ref":1001},"startPos":170,"endPos":205,"fileName":"src/app/features/article/services/tags.service.ts"},{"FM3":"FamixTypeScript.Decorator","id":1001,"sourceAnchor":{"ref":1000},"comments":[],"incomingImports":[],"name":"@Injectable","decorators":[],"expression":"Injectable({ providedIn: \"root\" })","decoratedEntity":{"ref":999}},{"FM3":"FamixTypeScript.Method","id":1002,"sourceAnchor":{"ref":1005},"comments":[],"incomingImports":[],"name":"getAll","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":1,"numberOfLinesOfCode":4,"types":[],"functions":[{"ref":1007}],"localVariables":[],"signature":"getAll(): Observable<string[]>","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":1004},"parentType":{"ref":999},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1003,"element":{"ref":1004},"startPos":288,"endPos":424,"fileName":"src/app/features/article/services/tags.service.ts"},{"FM3":"FamixTypeScript.ParameterType","id":1004,"sourceAnchor":{"ref":1003},"comments":[],"incomingImports":[],"name":"Observable<string[]>","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":999},"incomingReferences":[],"baseType":{"ref":524},"arguments":[{"ref":461}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1005,"element":{"ref":1002},"startPos":288,"endPos":424,"fileName":"src/app/features/article/services/tags.service.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1006,"element":{"ref":1007},"startPos":398,"endPos":417,"fileName":"src/app/features/article/services/tags.service.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1007,"sourceAnchor":{"ref":1006},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(data) => any","parameters":[{"ref":1009}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1008,"element":{"ref":1009},"startPos":399,"endPos":403,"fileName":"src/app/features/article/services/tags.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":1009,"sourceAnchor":{"ref":1008},"comments":[],"incomingImports":[],"name":"data","decorators":[],"incomingAccesses":[{"ref":2744}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":1007}},{"FM3":"FamixTypeScript.Method","id":1010,"sourceAnchor":{"ref":1013},"comments":[],"incomingImports":[],"name":"constructor","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"constructor(private readonly http: HttpClient)","parameters":[{"ref":1015}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":1012},"parentType":{"ref":999},"kind":"constructor","isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1011,"element":{"ref":1012},"startPos":235,"endPos":284,"fileName":"src/app/features/article/services/tags.service.ts"},{"FM3":"FamixTypeScript.Type","id":1012,"sourceAnchor":{"ref":1011},"comments":[],"incomingImports":[],"name":"import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/article/services/tags.service\").TagsService","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":999},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1013,"element":{"ref":1010},"startPos":235,"endPos":284,"fileName":"src/app/features/article/services/tags.service.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1014,"element":{"ref":1015},"startPos":247,"endPos":280,"fileName":"src/app/features/article/services/tags.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":1015,"sourceAnchor":{"ref":1014},"comments":[],"incomingImports":[],"name":"http","decorators":[],"incomingAccesses":[{"ref":2745}],"declaredType":{"ref":577},"parentBehaviouralEntity":{"ref":1010}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1016,"element":{"ref":1017},"startPos":430,"endPos":464,"fileName":"src/app/features/article/services/tags.service.ts"},{"FM3":"FamixTypeScript.Property","id":1017,"sourceAnchor":{"ref":1016},"comments":[],"incomingImports":[],"name":"http","decorators":[],"incomingAccesses":[],"declaredType":{"ref":577},"readOnly":true,"isClassSide":false,"parentType":{"ref":999},"visibility":"private"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1018,"element":{"ref":1019},"startPos":398,"endPos":417,"fileName":"src/app/features/article/services/tags.service.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1019,"sourceAnchor":{"ref":1018},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(data) => any","parameters":[{"ref":1021}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1020,"element":{"ref":1021},"startPos":399,"endPos":403,"fileName":"src/app/features/article/services/tags.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":1021,"sourceAnchor":{"ref":1020},"comments":[],"incomingImports":[],"name":"data","decorators":[],"incomingAccesses":[{"ref":2746}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":1019}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1022,"element":{"ref":1023},"startPos":1,"endPos":2109,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.Module","id":1023,"sourceAnchor":{"ref":1022},"comments":[],"incomingImports":[],"name":"follow-button.component.ts","decorators":[],"types":[{"ref":1025}],"functions":[{"ref":1071},{"ref":1075},{"ref":1079}],"localVariables":[],"outgoingImports":[{"ref":2187},{"ref":2191},{"ref":2195},{"ref":2199},{"ref":2203},{"ref":2207},{"ref":2211},{"ref":2215},{"ref":2219},{"ref":2222},{"ref":2223},{"ref":2224},{"ref":2228},{"ref":2232}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1024,"element":{"ref":1025},"startPos":516,"endPos":2108,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.Class","id":1025,"sourceAnchor":{"ref":1024},"comments":[],"incomingImports":[],"name":"FollowButtonComponent","decorators":[{"ref":1027}],"types":[{"ref":1054}],"functions":[],"localVariables":[],"incomingReferences":[],"isAbstract":false,"attributes":[{"ref":1029},{"ref":1033},{"ref":1037},{"ref":1039},{"ref":1061},{"ref":1065},{"ref":1069}],"methods":[{"ref":1040},{"ref":1052}],"superInheritances":[],"subInheritances":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1026,"element":{"ref":1027},"startPos":516,"endPos":1010,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.Decorator","id":1027,"sourceAnchor":{"ref":1026},"comments":[],"incomingImports":[],"name":"@Component","decorators":[],"expression":"Component({\n selector: \"app-follow-button\",\n template: `\n <button\n class=\"btn btn-sm action-btn\"\n [ngClass]=\"{\n disabled: isSubmitting,\n 'btn-outline-secondary': !profile.following,\n 'btn-secondary': profile.following\n }\"\n (click)=\"toggleFollowing()\"\n >\n <i class=\"ion-plus-round\"></i>\n \n {{ profile.following ? \"Unfollow\" : \"Follow\" }} {{ profile.username }}\n </button>\n `,\n imports: [NgClass],\n standalone: true,\n})","decoratedEntity":{"ref":1025}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1028,"element":{"ref":1029},"startPos":1050,"endPos":1077,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.Property","id":1029,"sourceAnchor":{"ref":1028},"comments":[],"incomingImports":[],"name":"profile","decorators":[{"ref":1031},{"ref":1035}],"incomingAccesses":[{"ref":2747}],"declaredType":{"ref":835},"readOnly":false,"isClassSide":false,"parentType":{"ref":1025},"visibility":"","isDefinitelyAssigned":true},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1030,"element":{"ref":1031},"startPos":1050,"endPos":1058,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.Decorator","id":1031,"sourceAnchor":{"ref":1030},"comments":[],"incomingImports":[],"name":"@Input","decorators":[],"expression":"Input()","decoratedEntity":{"ref":1029}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1032,"element":{"ref":1033},"startPos":1080,"endPos":1127,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.Property","id":1033,"sourceAnchor":{"ref":1032},"comments":[],"incomingImports":[],"name":"toggle","decorators":[{"ref":1035}],"incomingAccesses":[{"ref":2748}],"declaredType":{"ref":9},"readOnly":false,"isClassSide":false,"parentType":{"ref":1025},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1034,"element":{"ref":1035},"startPos":1080,"endPos":1089,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.Decorator","id":1035,"sourceAnchor":{"ref":1034},"comments":[],"incomingImports":[],"name":"@Output","decorators":[],"expression":"Output()","decoratedEntity":{"ref":1033}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1036,"element":{"ref":1037},"startPos":1130,"endPos":1151,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.Property","id":1037,"sourceAnchor":{"ref":1036},"comments":[],"incomingImports":[],"name":"isSubmitting","decorators":[],"incomingAccesses":[{"ref":2749}],"declaredType":{"ref":63},"readOnly":false,"isClassSide":false,"parentType":{"ref":1025},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1038,"element":{"ref":1039},"startPos":1154,"endPos":1186,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.Property","id":1039,"sourceAnchor":{"ref":1038},"comments":[],"incomingImports":[],"name":"destroyRef","decorators":[],"incomingAccesses":[{"ref":2750}],"declaredType":{"ref":9},"readOnly":false,"isClassSide":false,"parentType":{"ref":1025},"visibility":""},{"FM3":"FamixTypeScript.Method","id":1040,"sourceAnchor":{"ref":1041},"comments":[],"incomingImports":[],"name":"toggleFollowing","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":2,"numberOfLinesOfCode":26,"types":[],"functions":[{"ref":1043},{"ref":1047},{"ref":1051}],"localVariables":[],"signature":"toggleFollowing(): void","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":5},"parentType":{"ref":1025},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1041,"element":{"ref":1040},"startPos":1350,"endPos":2106,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1042,"element":{"ref":1043},"startPos":1475,"endPos":1854,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1043,"sourceAnchor":{"ref":1042},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":2,"numberOfLinesOfCode":11,"types":[],"functions":[],"localVariables":[],"signature":"(isAuthenticated: boolean) => any","parameters":[{"ref":1045}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1044,"element":{"ref":1045},"startPos":1476,"endPos":1500,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1045,"sourceAnchor":{"ref":1044},"comments":[],"incomingImports":[],"name":"isAuthenticated","decorators":[],"incomingAccesses":[{"ref":2751}],"declaredType":{"ref":63},"parentBehaviouralEntity":{"ref":1043}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1046,"element":{"ref":1047},"startPos":1943,"endPos":2041,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1047,"sourceAnchor":{"ref":1046},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":2,"numberOfLinesOfCode":3,"types":[],"functions":[],"localVariables":[],"signature":"(profile) => void","parameters":[{"ref":1049}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1048,"element":{"ref":1049},"startPos":1944,"endPos":1951,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1049,"sourceAnchor":{"ref":1048},"comments":[],"incomingImports":[],"name":"profile","decorators":[],"incomingAccesses":[{"ref":2752}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":1047}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1050,"element":{"ref":1051},"startPos":2058,"endPos":2091,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1051,"sourceAnchor":{"ref":1050},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"() => boolean","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":63}},{"FM3":"FamixTypeScript.Method","id":1052,"sourceAnchor":{"ref":1055},"comments":[],"incomingImports":[],"name":"constructor","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":4,"types":[{"ref":1057}],"functions":[],"localVariables":[],"signature":"constructor(\n private readonly profileService: ProfileService,\n private readonly router: Router,\n private readonly userService: UserService,\n )","parameters":[{"ref":1059},{"ref":1063},{"ref":1067}],"numberOfParameters":3,"incomingInvocations":[],"declaredType":{"ref":1054},"parentType":{"ref":1025},"kind":"constructor","isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1053,"element":{"ref":1054},"startPos":1190,"endPos":1346,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.Type","id":1054,"sourceAnchor":{"ref":1053},"comments":[],"incomingImports":[],"name":"import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/profile/components/follow-button.component\").FollowButtonComponent","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":1025},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1055,"element":{"ref":1052},"startPos":1190,"endPos":1346,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1056,"element":{"ref":1057},"startPos":1207,"endPos":1254,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.Type","id":1057,"sourceAnchor":{"ref":1056},"comments":[],"incomingImports":[],"name":"import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/profile/services/profile.service\").ProfileService","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":1052},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1058,"element":{"ref":1059},"startPos":1207,"endPos":1254,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1059,"sourceAnchor":{"ref":1058},"comments":[],"incomingImports":[],"name":"profileService","decorators":[],"incomingAccesses":[{"ref":2753}],"declaredType":{"ref":1057},"parentBehaviouralEntity":{"ref":1052}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1060,"element":{"ref":1061},"startPos":2112,"endPos":2160,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.Property","id":1061,"sourceAnchor":{"ref":1060},"comments":[],"incomingImports":[],"name":"profileService","decorators":[],"incomingAccesses":[],"declaredType":{"ref":1057},"readOnly":true,"isClassSide":false,"parentType":{"ref":1025},"visibility":"private"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1062,"element":{"ref":1063},"startPos":1260,"endPos":1291,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1063,"sourceAnchor":{"ref":1062},"comments":[],"incomingImports":[],"name":"router","decorators":[],"incomingAccesses":[{"ref":2754}],"declaredType":{"ref":169},"parentBehaviouralEntity":{"ref":1052}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1064,"element":{"ref":1065},"startPos":2112,"endPos":2144,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.Property","id":1065,"sourceAnchor":{"ref":1064},"comments":[],"incomingImports":[],"name":"router","decorators":[],"incomingAccesses":[],"declaredType":{"ref":169},"readOnly":true,"isClassSide":false,"parentType":{"ref":1025},"visibility":"private"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1066,"element":{"ref":1067},"startPos":1297,"endPos":1338,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1067,"sourceAnchor":{"ref":1066},"comments":[],"incomingImports":[],"name":"userService","decorators":[],"incomingAccesses":[{"ref":2755}],"declaredType":{"ref":33},"parentBehaviouralEntity":{"ref":1052}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1068,"element":{"ref":1069},"startPos":2112,"endPos":2154,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.Property","id":1069,"sourceAnchor":{"ref":1068},"comments":[],"incomingImports":[],"name":"userService","decorators":[],"incomingAccesses":[],"declaredType":{"ref":33},"readOnly":true,"isClassSide":false,"parentType":{"ref":1025},"visibility":"private"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1070,"element":{"ref":1071},"startPos":1475,"endPos":1854,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1071,"sourceAnchor":{"ref":1070},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":2,"numberOfLinesOfCode":11,"types":[],"functions":[],"localVariables":[],"signature":"(isAuthenticated: boolean) => any","parameters":[{"ref":1073}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1072,"element":{"ref":1073},"startPos":1476,"endPos":1500,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1073,"sourceAnchor":{"ref":1072},"comments":[],"incomingImports":[],"name":"isAuthenticated","decorators":[],"incomingAccesses":[{"ref":2756}],"declaredType":{"ref":63},"parentBehaviouralEntity":{"ref":1071}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1074,"element":{"ref":1075},"startPos":1943,"endPos":2041,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1075,"sourceAnchor":{"ref":1074},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":2,"numberOfLinesOfCode":3,"types":[],"functions":[],"localVariables":[],"signature":"(profile) => void","parameters":[{"ref":1077}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1076,"element":{"ref":1077},"startPos":1944,"endPos":1951,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1077,"sourceAnchor":{"ref":1076},"comments":[],"incomingImports":[],"name":"profile","decorators":[],"incomingAccesses":[{"ref":2757}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":1075}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1078,"element":{"ref":1079},"startPos":2058,"endPos":2091,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1079,"sourceAnchor":{"ref":1078},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"() => boolean","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":63}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1080,"element":{"ref":1081},"startPos":1,"endPos":1345,"fileName":"src/app/features/profile/components/profile-articles.component.ts"},{"FM3":"FamixTypeScript.Module","id":1081,"sourceAnchor":{"ref":1080},"comments":[],"incomingImports":[],"name":"profile-articles.component.ts","decorators":[],"types":[{"ref":1083}],"functions":[{"ref":1111}],"localVariables":[],"outgoingImports":[{"ref":2236},{"ref":2240},{"ref":2244},{"ref":2248},{"ref":2252},{"ref":2255},{"ref":2256},{"ref":2257},{"ref":2258},{"ref":2262}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1082,"element":{"ref":1083},"startPos":473,"endPos":1344,"fileName":"src/app/features/profile/components/profile-articles.component.ts"},{"FM3":"FamixTypeScript.Class","id":1083,"sourceAnchor":{"ref":1082},"comments":[],"incomingImports":[],"name":"ProfileArticlesComponent","decorators":[{"ref":1085}],"types":[{"ref":1100}],"functions":[],"localVariables":[],"incomingReferences":[],"isAbstract":false,"attributes":[{"ref":1087},{"ref":1089},{"ref":1091},{"ref":1105},{"ref":1109}],"methods":[{"ref":1092},{"ref":1098}],"superInheritances":[{"ref":2930}],"subInheritances":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1084,"element":{"ref":1085},"startPos":473,"endPos":654,"fileName":"src/app/features/profile/components/profile-articles.component.ts"},{"FM3":"FamixTypeScript.Decorator","id":1085,"sourceAnchor":{"ref":1084},"comments":[],"incomingImports":[],"name":"@Component","decorators":[],"expression":"Component({\n selector: \"app-profile-articles\",\n template: `<app-article-list [limit]=\"10\" [config]=\"articlesConfig\" />`,\n imports: [ArticleListComponent],\n standalone: true,\n})","decoratedEntity":{"ref":1083}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1086,"element":{"ref":1087},"startPos":723,"endPos":741,"fileName":"src/app/features/profile/components/profile-articles.component.ts"},{"FM3":"FamixTypeScript.Property","id":1087,"sourceAnchor":{"ref":1086},"comments":[],"incomingImports":[],"name":"profile","decorators":[],"incomingAccesses":[{"ref":2758}],"declaredType":{"ref":835},"readOnly":false,"isClassSide":false,"parentType":{"ref":1083},"visibility":"","isDefinitelyAssigned":true},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1088,"element":{"ref":1089},"startPos":744,"endPos":779,"fileName":"src/app/features/profile/components/profile-articles.component.ts"},{"FM3":"FamixTypeScript.Property","id":1089,"sourceAnchor":{"ref":1088},"comments":[],"incomingImports":[],"name":"articlesConfig","decorators":[],"incomingAccesses":[{"ref":2759}],"declaredType":{"ref":643},"readOnly":false,"isClassSide":false,"parentType":{"ref":1083},"visibility":"","isDefinitelyAssigned":true},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1090,"element":{"ref":1091},"startPos":782,"endPos":814,"fileName":"src/app/features/profile/components/profile-articles.component.ts"},{"FM3":"FamixTypeScript.Property","id":1091,"sourceAnchor":{"ref":1090},"comments":[],"incomingImports":[],"name":"destroyRef","decorators":[],"incomingAccesses":[{"ref":2760}],"declaredType":{"ref":9},"readOnly":false,"isClassSide":false,"parentType":{"ref":1083},"visibility":""},{"FM3":"FamixTypeScript.Method","id":1092,"sourceAnchor":{"ref":1093},"comments":[],"incomingImports":[],"name":"ngOnInit","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":1,"numberOfLinesOfCode":15,"types":[],"functions":[{"ref":1095}],"localVariables":[],"signature":"ngOnInit(): void","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":5},"parentType":{"ref":1083},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1093,"element":{"ref":1092},"startPos":929,"endPos":1342,"fileName":"src/app/features/profile/components/profile-articles.component.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1094,"element":{"ref":1095},"startPos":1105,"endPos":1327,"fileName":"src/app/features/profile/components/profile-articles.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1095,"sourceAnchor":{"ref":1094},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":2,"numberOfLinesOfCode":8,"types":[],"functions":[],"localVariables":[],"signature":"(profile: Profile) => void","parameters":[{"ref":1097}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1096,"element":{"ref":1097},"startPos":1106,"endPos":1122,"fileName":"src/app/features/profile/components/profile-articles.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1097,"sourceAnchor":{"ref":1096},"comments":[],"incomingImports":[],"name":"profile","decorators":[],"incomingAccesses":[{"ref":2761}],"declaredType":{"ref":835},"parentBehaviouralEntity":{"ref":1095}},{"FM3":"FamixTypeScript.Method","id":1098,"sourceAnchor":{"ref":1101},"comments":[],"incomingImports":[],"name":"constructor","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":3,"types":[],"functions":[],"localVariables":[],"signature":"constructor(\n private route: ActivatedRoute,\n private readonly profileService: ProfileService,\n )","parameters":[{"ref":1103},{"ref":1107}],"numberOfParameters":2,"incomingInvocations":[],"declaredType":{"ref":1100},"parentType":{"ref":1083},"kind":"constructor","isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1099,"element":{"ref":1100},"startPos":818,"endPos":925,"fileName":"src/app/features/profile/components/profile-articles.component.ts"},{"FM3":"FamixTypeScript.Type","id":1100,"sourceAnchor":{"ref":1099},"comments":[],"incomingImports":[],"name":"import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/profile/components/profile-articles.component\").default","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":1083},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1101,"element":{"ref":1098},"startPos":818,"endPos":925,"fileName":"src/app/features/profile/components/profile-articles.component.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1102,"element":{"ref":1103},"startPos":835,"endPos":864,"fileName":"src/app/features/profile/components/profile-articles.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1103,"sourceAnchor":{"ref":1102},"comments":[],"incomingImports":[],"name":"route","decorators":[],"incomingAccesses":[{"ref":2762}],"declaredType":{"ref":163},"parentBehaviouralEntity":{"ref":1098}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1104,"element":{"ref":1105},"startPos":1348,"endPos":1378,"fileName":"src/app/features/profile/components/profile-articles.component.ts"},{"FM3":"FamixTypeScript.Property","id":1105,"sourceAnchor":{"ref":1104},"comments":[],"incomingImports":[],"name":"route","decorators":[],"incomingAccesses":[],"declaredType":{"ref":163},"readOnly":false,"isClassSide":false,"parentType":{"ref":1083},"visibility":"private"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1106,"element":{"ref":1107},"startPos":870,"endPos":917,"fileName":"src/app/features/profile/components/profile-articles.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1107,"sourceAnchor":{"ref":1106},"comments":[],"incomingImports":[],"name":"profileService","decorators":[],"incomingAccesses":[{"ref":2763}],"declaredType":{"ref":1057},"parentBehaviouralEntity":{"ref":1098}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1108,"element":{"ref":1109},"startPos":1348,"endPos":1396,"fileName":"src/app/features/profile/components/profile-articles.component.ts"},{"FM3":"FamixTypeScript.Property","id":1109,"sourceAnchor":{"ref":1108},"comments":[],"incomingImports":[],"name":"profileService","decorators":[],"incomingAccesses":[],"declaredType":{"ref":1057},"readOnly":true,"isClassSide":false,"parentType":{"ref":1083},"visibility":"private"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1110,"element":{"ref":1111},"startPos":1105,"endPos":1327,"fileName":"src/app/features/profile/components/profile-articles.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1111,"sourceAnchor":{"ref":1110},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":2,"numberOfLinesOfCode":8,"types":[],"functions":[],"localVariables":[],"signature":"(profile: Profile) => void","parameters":[{"ref":1113}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1112,"element":{"ref":1113},"startPos":1106,"endPos":1122,"fileName":"src/app/features/profile/components/profile-articles.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1113,"sourceAnchor":{"ref":1112},"comments":[],"incomingImports":[],"name":"profile","decorators":[],"incomingAccesses":[{"ref":2764}],"declaredType":{"ref":835},"parentBehaviouralEntity":{"ref":1111}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1114,"element":{"ref":1115},"startPos":1,"endPos":1355,"fileName":"src/app/features/profile/components/profile-favorites.component.ts"},{"FM3":"FamixTypeScript.Module","id":1115,"sourceAnchor":{"ref":1114},"comments":[],"incomingImports":[],"name":"profile-favorites.component.ts","decorators":[],"types":[{"ref":1117}],"functions":[{"ref":1145}],"localVariables":[],"outgoingImports":[{"ref":2266},{"ref":2270},{"ref":2274},{"ref":2278},{"ref":2282},{"ref":2283},{"ref":2284},{"ref":2285},{"ref":2286},{"ref":2290}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1116,"element":{"ref":1117},"startPos":473,"endPos":1354,"fileName":"src/app/features/profile/components/profile-favorites.component.ts"},{"FM3":"FamixTypeScript.Class","id":1117,"sourceAnchor":{"ref":1116},"comments":[],"incomingImports":[],"name":"ProfileFavoritesComponent","decorators":[{"ref":1119}],"types":[{"ref":1134}],"functions":[],"localVariables":[],"incomingReferences":[],"isAbstract":false,"attributes":[{"ref":1121},{"ref":1123},{"ref":1125},{"ref":1139},{"ref":1143}],"methods":[{"ref":1126},{"ref":1132}],"superInheritances":[{"ref":2933}],"subInheritances":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1118,"element":{"ref":1119},"startPos":473,"endPos":656,"fileName":"src/app/features/profile/components/profile-favorites.component.ts"},{"FM3":"FamixTypeScript.Decorator","id":1119,"sourceAnchor":{"ref":1118},"comments":[],"incomingImports":[],"name":"@Component","decorators":[],"expression":"Component({\n selector: \"app-profile-favorites\",\n template: `<app-article-list [limit]=\"10\" [config]=\"favoritesConfig\" />`,\n imports: [ArticleListComponent],\n standalone: true,\n})","decoratedEntity":{"ref":1117}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1120,"element":{"ref":1121},"startPos":726,"endPos":744,"fileName":"src/app/features/profile/components/profile-favorites.component.ts"},{"FM3":"FamixTypeScript.Property","id":1121,"sourceAnchor":{"ref":1120},"comments":[],"incomingImports":[],"name":"profile","decorators":[],"incomingAccesses":[{"ref":2765}],"declaredType":{"ref":835},"readOnly":false,"isClassSide":false,"parentType":{"ref":1117},"visibility":"","isDefinitelyAssigned":true},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1122,"element":{"ref":1123},"startPos":747,"endPos":783,"fileName":"src/app/features/profile/components/profile-favorites.component.ts"},{"FM3":"FamixTypeScript.Property","id":1123,"sourceAnchor":{"ref":1122},"comments":[],"incomingImports":[],"name":"favoritesConfig","decorators":[],"incomingAccesses":[{"ref":2766}],"declaredType":{"ref":643},"readOnly":false,"isClassSide":false,"parentType":{"ref":1117},"visibility":"","isDefinitelyAssigned":true},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1124,"element":{"ref":1125},"startPos":786,"endPos":818,"fileName":"src/app/features/profile/components/profile-favorites.component.ts"},{"FM3":"FamixTypeScript.Property","id":1125,"sourceAnchor":{"ref":1124},"comments":[],"incomingImports":[],"name":"destroyRef","decorators":[],"incomingAccesses":[{"ref":2767}],"declaredType":{"ref":9},"readOnly":false,"isClassSide":false,"parentType":{"ref":1117},"visibility":""},{"FM3":"FamixTypeScript.Method","id":1126,"sourceAnchor":{"ref":1127},"comments":[],"incomingImports":[],"name":"ngOnInit","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":1,"numberOfLinesOfCode":15,"types":[],"functions":[{"ref":1129}],"localVariables":[],"signature":"ngOnInit()","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":5},"parentType":{"ref":1117},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1127,"element":{"ref":1126},"startPos":933,"endPos":1352,"fileName":"src/app/features/profile/components/profile-favorites.component.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1128,"element":{"ref":1129},"startPos":1111,"endPos":1337,"fileName":"src/app/features/profile/components/profile-favorites.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1129,"sourceAnchor":{"ref":1128},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":2,"numberOfLinesOfCode":8,"types":[],"functions":[],"localVariables":[],"signature":"(profile: Profile) => void","parameters":[{"ref":1131}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1130,"element":{"ref":1131},"startPos":1112,"endPos":1128,"fileName":"src/app/features/profile/components/profile-favorites.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1131,"sourceAnchor":{"ref":1130},"comments":[],"incomingImports":[],"name":"profile","decorators":[],"incomingAccesses":[{"ref":2768}],"declaredType":{"ref":835},"parentBehaviouralEntity":{"ref":1129}},{"FM3":"FamixTypeScript.Method","id":1132,"sourceAnchor":{"ref":1135},"comments":[],"incomingImports":[],"name":"constructor","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":3,"types":[],"functions":[],"localVariables":[],"signature":"constructor(\n private route: ActivatedRoute,\n private readonly profileService: ProfileService,\n )","parameters":[{"ref":1137},{"ref":1141}],"numberOfParameters":2,"incomingInvocations":[],"declaredType":{"ref":1134},"parentType":{"ref":1117},"kind":"constructor","isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1133,"element":{"ref":1134},"startPos":822,"endPos":929,"fileName":"src/app/features/profile/components/profile-favorites.component.ts"},{"FM3":"FamixTypeScript.Type","id":1134,"sourceAnchor":{"ref":1133},"comments":[],"incomingImports":[],"name":"import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/profile/components/profile-favorites.component\").default","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":1117},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1135,"element":{"ref":1132},"startPos":822,"endPos":929,"fileName":"src/app/features/profile/components/profile-favorites.component.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1136,"element":{"ref":1137},"startPos":839,"endPos":868,"fileName":"src/app/features/profile/components/profile-favorites.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1137,"sourceAnchor":{"ref":1136},"comments":[],"incomingImports":[],"name":"route","decorators":[],"incomingAccesses":[{"ref":2769}],"declaredType":{"ref":163},"parentBehaviouralEntity":{"ref":1132}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1138,"element":{"ref":1139},"startPos":1358,"endPos":1388,"fileName":"src/app/features/profile/components/profile-favorites.component.ts"},{"FM3":"FamixTypeScript.Property","id":1139,"sourceAnchor":{"ref":1138},"comments":[],"incomingImports":[],"name":"route","decorators":[],"incomingAccesses":[],"declaredType":{"ref":163},"readOnly":false,"isClassSide":false,"parentType":{"ref":1117},"visibility":"private"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1140,"element":{"ref":1141},"startPos":874,"endPos":921,"fileName":"src/app/features/profile/components/profile-favorites.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1141,"sourceAnchor":{"ref":1140},"comments":[],"incomingImports":[],"name":"profileService","decorators":[],"incomingAccesses":[{"ref":2770}],"declaredType":{"ref":1057},"parentBehaviouralEntity":{"ref":1132}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1142,"element":{"ref":1143},"startPos":1358,"endPos":1406,"fileName":"src/app/features/profile/components/profile-favorites.component.ts"},{"FM3":"FamixTypeScript.Property","id":1143,"sourceAnchor":{"ref":1142},"comments":[],"incomingImports":[],"name":"profileService","decorators":[],"incomingAccesses":[],"declaredType":{"ref":1057},"readOnly":true,"isClassSide":false,"parentType":{"ref":1117},"visibility":"private"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1144,"element":{"ref":1145},"startPos":1111,"endPos":1337,"fileName":"src/app/features/profile/components/profile-favorites.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1145,"sourceAnchor":{"ref":1144},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":2,"numberOfLinesOfCode":8,"types":[],"functions":[],"localVariables":[],"signature":"(profile: Profile) => void","parameters":[{"ref":1147}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1146,"element":{"ref":1147},"startPos":1112,"endPos":1128,"fileName":"src/app/features/profile/components/profile-favorites.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1147,"sourceAnchor":{"ref":1146},"comments":[],"incomingImports":[],"name":"profile","decorators":[],"incomingAccesses":[{"ref":2771}],"declaredType":{"ref":835},"parentBehaviouralEntity":{"ref":1145}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1148,"element":{"ref":1149},"startPos":1,"endPos":104,"fileName":"src/app/features/profile/models/profile.model.ts"},{"FM3":"FamixTypeScript.Module","id":1149,"sourceAnchor":{"ref":1148},"comments":[],"incomingImports":[],"name":"profile.model.ts","decorators":[],"types":[{"ref":1151}],"functions":[],"localVariables":[],"outgoingImports":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1150,"element":{"ref":1151},"startPos":1,"endPos":103,"fileName":"src/app/features/profile/models/profile.model.ts"},{"FM3":"FamixTypeScript.Interface","id":1151,"sourceAnchor":{"ref":1150},"comments":[],"incomingImports":[],"name":"Profile","decorators":[],"types":[],"functions":[],"localVariables":[],"incomingReferences":[],"attributes":[{"ref":1153},{"ref":1155},{"ref":1157},{"ref":1159}],"methods":[],"superInheritances":[],"subInheritances":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1152,"element":{"ref":1153},"startPos":30,"endPos":47,"fileName":"src/app/features/profile/models/profile.model.ts"},{"FM3":"FamixTypeScript.Property","id":1153,"sourceAnchor":{"ref":1152},"comments":[],"incomingImports":[],"name":"username","decorators":[],"incomingAccesses":[],"declaredType":{"ref":123},"readOnly":false,"isClassSide":false,"parentType":{"ref":1151},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1154,"element":{"ref":1155},"startPos":50,"endPos":62,"fileName":"src/app/features/profile/models/profile.model.ts"},{"FM3":"FamixTypeScript.Property","id":1155,"sourceAnchor":{"ref":1154},"comments":[],"incomingImports":[],"name":"bio","decorators":[],"incomingAccesses":[],"declaredType":{"ref":123},"readOnly":false,"isClassSide":false,"parentType":{"ref":1151},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1156,"element":{"ref":1157},"startPos":65,"endPos":79,"fileName":"src/app/features/profile/models/profile.model.ts"},{"FM3":"FamixTypeScript.Property","id":1157,"sourceAnchor":{"ref":1156},"comments":[],"incomingImports":[],"name":"image","decorators":[],"incomingAccesses":[],"declaredType":{"ref":123},"readOnly":false,"isClassSide":false,"parentType":{"ref":1151},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1158,"element":{"ref":1159},"startPos":82,"endPos":101,"fileName":"src/app/features/profile/models/profile.model.ts"},{"FM3":"FamixTypeScript.Property","id":1159,"sourceAnchor":{"ref":1158},"comments":[],"incomingImports":[],"name":"following","decorators":[],"incomingAccesses":[],"declaredType":{"ref":63},"readOnly":false,"isClassSide":false,"parentType":{"ref":1151},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1160,"element":{"ref":1161},"startPos":1,"endPos":1000,"fileName":"src/app/features/profile/services/profile.service.ts"},{"FM3":"FamixTypeScript.Module","id":1161,"sourceAnchor":{"ref":1160},"comments":[],"incomingImports":[],"name":"profile.service.ts","decorators":[],"types":[{"ref":1163}],"functions":[{"ref":1201},{"ref":1205},{"ref":1209}],"localVariables":[],"outgoingImports":[{"ref":2294},{"ref":2298},{"ref":2302},{"ref":2306},{"ref":2307},{"ref":2311}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1162,"element":{"ref":1163},"startPos":234,"endPos":999,"fileName":"src/app/features/profile/services/profile.service.ts"},{"FM3":"FamixTypeScript.Class","id":1163,"sourceAnchor":{"ref":1162},"comments":[],"incomingImports":[],"name":"ProfileService","decorators":[{"ref":1165}],"types":[{"ref":1168}],"functions":[],"localVariables":[],"incomingReferences":[],"isAbstract":false,"attributes":[{"ref":1199}],"methods":[{"ref":1166},{"ref":1178},{"ref":1186},{"ref":1194}],"superInheritances":[],"subInheritances":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1164,"element":{"ref":1165},"startPos":234,"endPos":269,"fileName":"src/app/features/profile/services/profile.service.ts"},{"FM3":"FamixTypeScript.Decorator","id":1165,"sourceAnchor":{"ref":1164},"comments":[],"incomingImports":[],"name":"@Injectable","decorators":[],"expression":"Injectable({ providedIn: \"root\" })","decoratedEntity":{"ref":1163}},{"FM3":"FamixTypeScript.Method","id":1166,"sourceAnchor":{"ref":1169},"comments":[],"incomingImports":[],"name":"get","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":1,"numberOfLinesOfCode":5,"types":[{"ref":1175}],"functions":[{"ref":1173}],"localVariables":[],"signature":"get(username: string): Observable<Profile>","parameters":[{"ref":1171}],"numberOfParameters":1,"incomingInvocations":[{"ref":2907},{"ref":2908},{"ref":2909}],"declaredType":{"ref":1168},"parentType":{"ref":1163},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1167,"element":{"ref":1168},"startPos":355,"endPos":567,"fileName":"src/app/features/profile/services/profile.service.ts"},{"FM3":"FamixTypeScript.ParameterType","id":1168,"sourceAnchor":{"ref":1167},"comments":[],"incomingImports":[],"name":"Observable<import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/profile/models/profile.model\").Profile>","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":1163},"incomingReferences":[],"baseType":{"ref":524},"arguments":[{"ref":835}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1169,"element":{"ref":1166},"startPos":355,"endPos":567,"fileName":"src/app/features/profile/services/profile.service.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1170,"element":{"ref":1171},"startPos":359,"endPos":375,"fileName":"src/app/features/profile/services/profile.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":1171,"sourceAnchor":{"ref":1170},"comments":[],"incomingImports":[],"name":"username","decorators":[],"incomingAccesses":[{"ref":2772}],"declaredType":{"ref":123},"parentBehaviouralEntity":{"ref":1166}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1172,"element":{"ref":1173},"startPos":488,"endPos":532,"fileName":"src/app/features/profile/services/profile.service.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1173,"sourceAnchor":{"ref":1172},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(data: { profile: Profile }) => import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/profile/models/profile.model\").Profile","parameters":[{"ref":1177}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":835}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1174,"element":{"ref":1175},"startPos":489,"endPos":515,"fileName":"src/app/features/profile/services/profile.service.ts"},{"FM3":"FamixTypeScript.Type","id":1175,"sourceAnchor":{"ref":1174},"comments":[],"incomingImports":[],"name":"{ profile: import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/profile/models/profile.model\").Profile; }","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":1166},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1176,"element":{"ref":1177},"startPos":489,"endPos":515,"fileName":"src/app/features/profile/services/profile.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":1177,"sourceAnchor":{"ref":1176},"comments":[],"incomingImports":[],"name":"data","decorators":[],"incomingAccesses":[{"ref":2773}],"declaredType":{"ref":1175},"parentBehaviouralEntity":{"ref":1173}},{"FM3":"FamixTypeScript.Method","id":1178,"sourceAnchor":{"ref":1179},"comments":[],"incomingImports":[],"name":"follow","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":1,"numberOfLinesOfCode":4,"types":[],"functions":[{"ref":1183}],"localVariables":[],"signature":"follow(username: string): Observable<Profile>","parameters":[{"ref":1181}],"numberOfParameters":1,"incomingInvocations":[{"ref":2910}],"declaredType":{"ref":1168},"parentType":{"ref":1163},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1179,"element":{"ref":1178},"startPos":571,"endPos":782,"fileName":"src/app/features/profile/services/profile.service.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1180,"element":{"ref":1181},"startPos":578,"endPos":594,"fileName":"src/app/features/profile/services/profile.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":1181,"sourceAnchor":{"ref":1180},"comments":[],"incomingImports":[],"name":"username","decorators":[],"incomingAccesses":[{"ref":2774}],"declaredType":{"ref":123},"parentBehaviouralEntity":{"ref":1178}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1182,"element":{"ref":1183},"startPos":731,"endPos":775,"fileName":"src/app/features/profile/services/profile.service.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1183,"sourceAnchor":{"ref":1182},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(data: { profile: Profile }) => import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/profile/models/profile.model\").Profile","parameters":[{"ref":1185}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":835}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1184,"element":{"ref":1185},"startPos":732,"endPos":758,"fileName":"src/app/features/profile/services/profile.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":1185,"sourceAnchor":{"ref":1184},"comments":[],"incomingImports":[],"name":"data","decorators":[],"incomingAccesses":[{"ref":2775}],"declaredType":{"ref":1175},"parentBehaviouralEntity":{"ref":1183}},{"FM3":"FamixTypeScript.Method","id":1186,"sourceAnchor":{"ref":1187},"comments":[],"incomingImports":[],"name":"unfollow","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":1,"numberOfLinesOfCode":4,"types":[],"functions":[{"ref":1191}],"localVariables":[],"signature":"unfollow(username: string): Observable<Profile>","parameters":[{"ref":1189}],"numberOfParameters":1,"incomingInvocations":[{"ref":2911}],"declaredType":{"ref":1168},"parentType":{"ref":1163},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1187,"element":{"ref":1186},"startPos":786,"endPos":997,"fileName":"src/app/features/profile/services/profile.service.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1188,"element":{"ref":1189},"startPos":795,"endPos":811,"fileName":"src/app/features/profile/services/profile.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":1189,"sourceAnchor":{"ref":1188},"comments":[],"incomingImports":[],"name":"username","decorators":[],"incomingAccesses":[{"ref":2776}],"declaredType":{"ref":123},"parentBehaviouralEntity":{"ref":1186}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1190,"element":{"ref":1191},"startPos":946,"endPos":990,"fileName":"src/app/features/profile/services/profile.service.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1191,"sourceAnchor":{"ref":1190},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(data: { profile: Profile }) => import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/profile/models/profile.model\").Profile","parameters":[{"ref":1193}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":835}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1192,"element":{"ref":1193},"startPos":947,"endPos":973,"fileName":"src/app/features/profile/services/profile.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":1193,"sourceAnchor":{"ref":1192},"comments":[],"incomingImports":[],"name":"data","decorators":[],"incomingAccesses":[{"ref":2777}],"declaredType":{"ref":1175},"parentBehaviouralEntity":{"ref":1191}},{"FM3":"FamixTypeScript.Method","id":1194,"sourceAnchor":{"ref":1195},"comments":[],"incomingImports":[],"name":"constructor","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"constructor(private readonly http: HttpClient)","parameters":[{"ref":1197}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":1057},"parentType":{"ref":1163},"kind":"constructor","isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1195,"element":{"ref":1194},"startPos":302,"endPos":351,"fileName":"src/app/features/profile/services/profile.service.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1196,"element":{"ref":1197},"startPos":314,"endPos":347,"fileName":"src/app/features/profile/services/profile.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":1197,"sourceAnchor":{"ref":1196},"comments":[],"incomingImports":[],"name":"http","decorators":[],"incomingAccesses":[{"ref":2778},{"ref":2779},{"ref":2780}],"declaredType":{"ref":577},"parentBehaviouralEntity":{"ref":1194}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1198,"element":{"ref":1199},"startPos":1003,"endPos":1037,"fileName":"src/app/features/profile/services/profile.service.ts"},{"FM3":"FamixTypeScript.Property","id":1199,"sourceAnchor":{"ref":1198},"comments":[],"incomingImports":[],"name":"http","decorators":[],"incomingAccesses":[],"declaredType":{"ref":577},"readOnly":true,"isClassSide":false,"parentType":{"ref":1163},"visibility":"private"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1200,"element":{"ref":1201},"startPos":488,"endPos":532,"fileName":"src/app/features/profile/services/profile.service.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1201,"sourceAnchor":{"ref":1200},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(data: { profile: Profile }) => import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/profile/models/profile.model\").Profile","parameters":[{"ref":1203}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":835}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1202,"element":{"ref":1203},"startPos":489,"endPos":515,"fileName":"src/app/features/profile/services/profile.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":1203,"sourceAnchor":{"ref":1202},"comments":[],"incomingImports":[],"name":"data","decorators":[],"incomingAccesses":[{"ref":2781}],"declaredType":{"ref":1175},"parentBehaviouralEntity":{"ref":1201}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1204,"element":{"ref":1205},"startPos":731,"endPos":775,"fileName":"src/app/features/profile/services/profile.service.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1205,"sourceAnchor":{"ref":1204},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(data: { profile: Profile }) => import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/profile/models/profile.model\").Profile","parameters":[{"ref":1207}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":835}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1206,"element":{"ref":1207},"startPos":732,"endPos":758,"fileName":"src/app/features/profile/services/profile.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":1207,"sourceAnchor":{"ref":1206},"comments":[],"incomingImports":[],"name":"data","decorators":[],"incomingAccesses":[{"ref":2782}],"declaredType":{"ref":1175},"parentBehaviouralEntity":{"ref":1205}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1208,"element":{"ref":1209},"startPos":946,"endPos":990,"fileName":"src/app/features/profile/services/profile.service.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1209,"sourceAnchor":{"ref":1208},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(data: { profile: Profile }) => import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/profile/models/profile.model\").Profile","parameters":[{"ref":1211}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":835}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1210,"element":{"ref":1211},"startPos":947,"endPos":973,"fileName":"src/app/features/profile/services/profile.service.ts"},{"FM3":"FamixTypeScript.Parameter","id":1211,"sourceAnchor":{"ref":1210},"comments":[],"incomingImports":[],"name":"data","decorators":[],"incomingAccesses":[{"ref":2783}],"declaredType":{"ref":1175},"parentBehaviouralEntity":{"ref":1209}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1212,"element":{"ref":1213},"startPos":1,"endPos":4619,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Module","id":1213,"sourceAnchor":{"ref":1212},"comments":[],"incomingImports":[],"name":"article.component.ts","decorators":[],"types":[{"ref":1215}],"functions":[{"ref":1315},{"ref":1321},{"ref":1323},{"ref":1327},{"ref":1329},{"ref":1333},{"ref":1337},{"ref":1343}],"localVariables":[],"outgoingImports":[{"ref":2315},{"ref":2319},{"ref":2323},{"ref":2327},{"ref":2331},{"ref":2335},{"ref":2339},{"ref":2343},{"ref":2347},{"ref":2351},{"ref":2352},{"ref":2353},{"ref":2354},{"ref":2357},{"ref":2358},{"ref":2359},{"ref":2363},{"ref":2367},{"ref":2371},{"ref":2375},{"ref":2378},{"ref":2379},{"ref":2382},{"ref":2386},{"ref":2390},{"ref":2394},{"ref":2395},{"ref":2396},{"ref":2397},{"ref":2398},{"ref":2402},{"ref":2403},{"ref":2406}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1214,"element":{"ref":1215},"startPos":1554,"endPos":4618,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Class","id":1215,"sourceAnchor":{"ref":1214},"comments":[],"incomingImports":[],"name":"ArticleComponent","decorators":[{"ref":1217}],"types":[{"ref":1292}],"functions":[],"localVariables":[],"incomingReferences":[],"isAbstract":false,"attributes":[{"ref":1219},{"ref":1221},{"ref":1223},{"ref":1225},{"ref":1227},{"ref":1229},{"ref":1231},{"ref":1233},{"ref":1235},{"ref":1297},{"ref":1301},{"ref":1305},{"ref":1309},{"ref":1313}],"methods":[{"ref":1236},{"ref":1254},{"ref":1258},{"ref":1262},{"ref":1266},{"ref":1276},{"ref":1290}],"superInheritances":[{"ref":2936}],"subInheritances":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1216,"element":{"ref":1217},"startPos":1554,"endPos":1975,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Decorator","id":1217,"sourceAnchor":{"ref":1216},"comments":[],"incomingImports":[],"name":"@Component","decorators":[],"expression":"Component({\n selector: \"app-article-page\",\n templateUrl: \"./article.component.html\",\n imports: [\n ArticleMetaComponent,\n RouterLink,\n NgClass,\n FollowButtonComponent,\n FavoriteButtonComponent,\n NgForOf,\n MarkdownPipe,\n AsyncPipe,\n ListErrorsComponent,\n FormsModule,\n ArticleCommentComponent,\n ReactiveFormsModule,\n IfAuthenticatedDirective,\n NgIf,\n ],\n standalone: true,\n})","decoratedEntity":{"ref":1215}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1218,"element":{"ref":1219},"startPos":2036,"endPos":2054,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Property","id":1219,"sourceAnchor":{"ref":1218},"comments":[],"incomingImports":[],"name":"article","decorators":[],"incomingAccesses":[{"ref":2784},{"ref":2785},{"ref":2786},{"ref":2787},{"ref":2788},{"ref":2789}],"declaredType":{"ref":731},"readOnly":false,"isClassSide":false,"parentType":{"ref":1215},"visibility":"","isDefinitelyAssigned":true},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1220,"element":{"ref":1221},"startPos":2057,"endPos":2083,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Property","id":1221,"sourceAnchor":{"ref":1220},"comments":[],"incomingImports":[],"name":"currentUser","decorators":[],"incomingAccesses":[{"ref":2790}],"declaredType":{"ref":633},"readOnly":false,"isClassSide":false,"parentType":{"ref":1215},"visibility":"","isDefinitelyAssigned":true},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1222,"element":{"ref":1223},"startPos":2086,"endPos":2111,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Property","id":1223,"sourceAnchor":{"ref":1222},"comments":[],"incomingImports":[],"name":"comments","decorators":[],"incomingAccesses":[{"ref":2791},{"ref":2792},{"ref":2793}],"declaredType":{"ref":952},"readOnly":false,"isClassSide":false,"parentType":{"ref":1215},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1224,"element":{"ref":1225},"startPos":2114,"endPos":2141,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Property","id":1225,"sourceAnchor":{"ref":1224},"comments":[],"incomingImports":[],"name":"canModify","decorators":[],"incomingAccesses":[{"ref":2794}],"declaredType":{"ref":63},"readOnly":false,"isClassSide":false,"parentType":{"ref":1215},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1226,"element":{"ref":1227},"startPos":2145,"endPos":2213,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Property","id":1227,"sourceAnchor":{"ref":1226},"comments":[],"incomingImports":[],"name":"commentControl","decorators":[],"incomingAccesses":[{"ref":2795}],"declaredType":{"ref":9},"readOnly":false,"isClassSide":false,"parentType":{"ref":1215},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1228,"element":{"ref":1229},"startPos":2216,"endPos":2256,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Property","id":1229,"sourceAnchor":{"ref":1228},"comments":[],"incomingImports":[],"name":"commentFormErrors","decorators":[],"incomingAccesses":[{"ref":2796}],"declaredType":{"ref":399},"readOnly":false,"isClassSide":false,"parentType":{"ref":1215},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1230,"element":{"ref":1231},"startPos":2260,"endPos":2281,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Property","id":1231,"sourceAnchor":{"ref":1230},"comments":[],"incomingImports":[],"name":"isSubmitting","decorators":[],"incomingAccesses":[{"ref":2797}],"declaredType":{"ref":63},"readOnly":false,"isClassSide":false,"parentType":{"ref":1215},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1232,"element":{"ref":1233},"startPos":2284,"endPos":2303,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Property","id":1233,"sourceAnchor":{"ref":1232},"comments":[],"incomingImports":[],"name":"isDeleting","decorators":[],"incomingAccesses":[{"ref":2798}],"declaredType":{"ref":63},"readOnly":false,"isClassSide":false,"parentType":{"ref":1215},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1234,"element":{"ref":1235},"startPos":2306,"endPos":2338,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Property","id":1235,"sourceAnchor":{"ref":1234},"comments":[],"incomingImports":[],"name":"destroyRef","decorators":[],"incomingAccesses":[{"ref":2799},{"ref":2800},{"ref":2801},{"ref":2802}],"declaredType":{"ref":9},"readOnly":false,"isClassSide":false,"parentType":{"ref":1215},"visibility":""},{"FM3":"FamixTypeScript.Method","id":1236,"sourceAnchor":{"ref":1237},"comments":[],"incomingImports":[],"name":"ngOnInit","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":2,"numberOfLinesOfCode":20,"types":[{"ref":1251}],"functions":[{"ref":1241},{"ref":1247},{"ref":1249}],"localVariables":[{"ref":1239}],"signature":"ngOnInit(): void","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":5},"parentType":{"ref":1215},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1237,"element":{"ref":1236},"startPos":2602,"endPos":3259,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1238,"element":{"ref":1239},"startPos":2631,"endPos":2672,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Variable","id":1239,"sourceAnchor":{"ref":1238},"comments":[],"incomingImports":[],"name":"slug","decorators":[],"incomingAccesses":[{"ref":2803}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":1236}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1240,"element":{"ref":1241},"startPos":2847,"endPos":2951,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1241,"sourceAnchor":{"ref":1240},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":2,"numberOfLinesOfCode":3,"types":[],"functions":[{"ref":1245}],"localVariables":[],"signature":"(err) => any","parameters":[{"ref":1243}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1242,"element":{"ref":1243},"startPos":2848,"endPos":2851,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1243,"sourceAnchor":{"ref":1242},"comments":[],"incomingImports":[],"name":"err","decorators":[],"incomingAccesses":[{"ref":2804}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":1241}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1244,"element":{"ref":1245},"startPos":2930,"endPos":2939,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1245,"sourceAnchor":{"ref":1244},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"() => any","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1246,"element":{"ref":1247},"startPos":2930,"endPos":2939,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1247,"sourceAnchor":{"ref":1246},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"() => any","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1248,"element":{"ref":1249},"startPos":3024,"endPos":3253,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1249,"sourceAnchor":{"ref":1248},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":4,"numberOfLinesOfCode":5,"types":[],"functions":[],"localVariables":[],"signature":"([article, comments, currentUser]) => void","parameters":[{"ref":1253}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1250,"element":{"ref":1251},"startPos":3025,"endPos":3057,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Type","id":1251,"sourceAnchor":{"ref":1250},"comments":[],"incomingImports":[],"name":"[any, any, any]","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":1236},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1252,"element":{"ref":1253},"startPos":3025,"endPos":3057,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1253,"sourceAnchor":{"ref":1252},"comments":[],"incomingImports":[],"name":"[article, comments, currentUser]","decorators":[],"incomingAccesses":[],"declaredType":{"ref":1251},"parentBehaviouralEntity":{"ref":1249}},{"FM3":"FamixTypeScript.Method","id":1254,"sourceAnchor":{"ref":1255},"comments":[],"incomingImports":[],"name":"onToggleFavorite","decorators":[],"cyclomaticComplexity":2,"numberOfStatements":2,"numberOfLinesOfCode":8,"types":[],"functions":[],"localVariables":[],"signature":"onToggleFavorite(favorited: boolean): void","parameters":[{"ref":1257}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5},"parentType":{"ref":1215},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1255,"element":{"ref":1254},"startPos":3263,"endPos":3466,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1256,"element":{"ref":1257},"startPos":3280,"endPos":3298,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1257,"sourceAnchor":{"ref":1256},"comments":[],"incomingImports":[],"name":"favorited","decorators":[],"incomingAccesses":[{"ref":2805}],"declaredType":{"ref":63},"parentBehaviouralEntity":{"ref":1254}},{"FM3":"FamixTypeScript.Method","id":1258,"sourceAnchor":{"ref":1259},"comments":[],"incomingImports":[],"name":"toggleFollowing","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":1,"numberOfLinesOfCode":2,"types":[],"functions":[],"localVariables":[],"signature":"toggleFollowing(profile: Profile): void","parameters":[{"ref":1261}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5},"parentType":{"ref":1215},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1259,"element":{"ref":1258},"startPos":3470,"endPos":3570,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1260,"element":{"ref":1261},"startPos":3486,"endPos":3502,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1261,"sourceAnchor":{"ref":1260},"comments":[],"incomingImports":[],"name":"profile","decorators":[],"incomingAccesses":[{"ref":2806}],"declaredType":{"ref":835},"parentBehaviouralEntity":{"ref":1258}},{"FM3":"FamixTypeScript.Method","id":1262,"sourceAnchor":{"ref":1263},"comments":[],"incomingImports":[],"name":"deleteArticle","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":2,"numberOfLinesOfCode":9,"types":[],"functions":[{"ref":1265}],"localVariables":[],"signature":"deleteArticle(): void","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":5},"parentType":{"ref":1215},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1263,"element":{"ref":1262},"startPos":3574,"endPos":3813,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1264,"element":{"ref":1265},"startPos":3750,"endPos":3807,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1265,"sourceAnchor":{"ref":1264},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":1,"numberOfLinesOfCode":2,"types":[],"functions":[],"localVariables":[],"signature":"() => void","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.Method","id":1266,"sourceAnchor":{"ref":1267},"comments":[],"incomingImports":[],"name":"addComment","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":3,"numberOfLinesOfCode":18,"types":[],"functions":[{"ref":1269},{"ref":1273}],"localVariables":[],"signature":"addComment()","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":5},"parentType":{"ref":1215},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1267,"element":{"ref":1266},"startPos":3817,"endPos":4341,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1268,"element":{"ref":1269},"startPos":4062,"endPos":4206,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1269,"sourceAnchor":{"ref":1268},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":3,"numberOfLinesOfCode":4,"types":[],"functions":[],"localVariables":[],"signature":"(comment) => void","parameters":[{"ref":1271}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1270,"element":{"ref":1271},"startPos":4063,"endPos":4070,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1271,"sourceAnchor":{"ref":1270},"comments":[],"incomingImports":[],"name":"comment","decorators":[],"incomingAccesses":[{"ref":2807}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":1269}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1272,"element":{"ref":1273},"startPos":4223,"endPos":4326,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1273,"sourceAnchor":{"ref":1272},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":2,"numberOfLinesOfCode":3,"types":[],"functions":[],"localVariables":[],"signature":"(errors) => void","parameters":[{"ref":1275}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1274,"element":{"ref":1275},"startPos":4224,"endPos":4230,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1275,"sourceAnchor":{"ref":1274},"comments":[],"incomingImports":[],"name":"errors","decorators":[],"incomingAccesses":[{"ref":2808}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":1273}},{"FM3":"FamixTypeScript.Method","id":1276,"sourceAnchor":{"ref":1277},"comments":[],"incomingImports":[],"name":"deleteComment","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":1,"numberOfLinesOfCode":7,"types":[],"functions":[{"ref":1281},{"ref":1287}],"localVariables":[],"signature":"deleteComment(comment: Comment): void","parameters":[{"ref":1279}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5},"parentType":{"ref":1215},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1277,"element":{"ref":1276},"startPos":4345,"endPos":4616,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1278,"element":{"ref":1279},"startPos":4359,"endPos":4375,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1279,"sourceAnchor":{"ref":1278},"comments":[],"incomingImports":[],"name":"comment","decorators":[],"incomingAccesses":[{"ref":2809}],"declaredType":{"ref":619},"parentBehaviouralEntity":{"ref":1276}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1280,"element":{"ref":1281},"startPos":4521,"endPos":4610,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1281,"sourceAnchor":{"ref":1280},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":1,"numberOfLinesOfCode":2,"types":[],"functions":[{"ref":1283}],"localVariables":[],"signature":"() => void","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1282,"element":{"ref":1283},"startPos":4574,"endPos":4600,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1283,"sourceAnchor":{"ref":1282},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(item) => boolean","parameters":[{"ref":1285}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":63}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1284,"element":{"ref":1285},"startPos":4575,"endPos":4579,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1285,"sourceAnchor":{"ref":1284},"comments":[],"incomingImports":[],"name":"item","decorators":[],"incomingAccesses":[{"ref":2810}],"declaredType":{"ref":619},"parentBehaviouralEntity":{"ref":1283}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1286,"element":{"ref":1287},"startPos":4574,"endPos":4600,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1287,"sourceAnchor":{"ref":1286},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(item) => boolean","parameters":[{"ref":1289}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":63}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1288,"element":{"ref":1289},"startPos":4575,"endPos":4579,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1289,"sourceAnchor":{"ref":1288},"comments":[],"incomingImports":[],"name":"item","decorators":[],"incomingAccesses":[{"ref":2811}],"declaredType":{"ref":619},"parentBehaviouralEntity":{"ref":1287}},{"FM3":"FamixTypeScript.Method","id":1290,"sourceAnchor":{"ref":1293},"comments":[],"incomingImports":[],"name":"constructor","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":6,"types":[],"functions":[],"localVariables":[],"signature":"constructor(\n private readonly route: ActivatedRoute,\n private readonly articleService: ArticlesService,\n private readonly commentsService: CommentsService,\n private readonly router: Router,\n private readonly userService: UserService,\n )","parameters":[{"ref":1295},{"ref":1299},{"ref":1303},{"ref":1307},{"ref":1311}],"numberOfParameters":5,"incomingInvocations":[],"declaredType":{"ref":1292},"parentType":{"ref":1215},"kind":"constructor","isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1291,"element":{"ref":1292},"startPos":2342,"endPos":2598,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Type","id":1292,"sourceAnchor":{"ref":1291},"comments":[],"incomingImports":[],"name":"import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/article/pages/article/article.component\").default","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":1215},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1293,"element":{"ref":1290},"startPos":2342,"endPos":2598,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1294,"element":{"ref":1295},"startPos":2359,"endPos":2397,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1295,"sourceAnchor":{"ref":1294},"comments":[],"incomingImports":[],"name":"route","decorators":[],"incomingAccesses":[{"ref":2812}],"declaredType":{"ref":163},"parentBehaviouralEntity":{"ref":1290}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1296,"element":{"ref":1297},"startPos":4622,"endPos":4661,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Property","id":1297,"sourceAnchor":{"ref":1296},"comments":[],"incomingImports":[],"name":"route","decorators":[],"incomingAccesses":[],"declaredType":{"ref":163},"readOnly":true,"isClassSide":false,"parentType":{"ref":1215},"visibility":"private"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1298,"element":{"ref":1299},"startPos":2403,"endPos":2451,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1299,"sourceAnchor":{"ref":1298},"comments":[],"incomingImports":[],"name":"articleService","decorators":[],"incomingAccesses":[{"ref":2813},{"ref":2814}],"declaredType":{"ref":697},"parentBehaviouralEntity":{"ref":1290}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1300,"element":{"ref":1301},"startPos":4622,"endPos":4671,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Property","id":1301,"sourceAnchor":{"ref":1300},"comments":[],"incomingImports":[],"name":"articleService","decorators":[],"incomingAccesses":[],"declaredType":{"ref":697},"readOnly":true,"isClassSide":false,"parentType":{"ref":1215},"visibility":"private"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1302,"element":{"ref":1303},"startPos":2457,"endPos":2506,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1303,"sourceAnchor":{"ref":1302},"comments":[],"incomingImports":[],"name":"commentsService","decorators":[],"incomingAccesses":[{"ref":2815},{"ref":2816},{"ref":2817}],"declaredType":{"ref":982},"parentBehaviouralEntity":{"ref":1290}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1304,"element":{"ref":1305},"startPos":4622,"endPos":4672,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Property","id":1305,"sourceAnchor":{"ref":1304},"comments":[],"incomingImports":[],"name":"commentsService","decorators":[],"incomingAccesses":[],"declaredType":{"ref":982},"readOnly":true,"isClassSide":false,"parentType":{"ref":1215},"visibility":"private"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1306,"element":{"ref":1307},"startPos":2512,"endPos":2543,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1307,"sourceAnchor":{"ref":1306},"comments":[],"incomingImports":[],"name":"router","decorators":[],"incomingAccesses":[{"ref":2818},{"ref":2819}],"declaredType":{"ref":169},"parentBehaviouralEntity":{"ref":1290}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1308,"element":{"ref":1309},"startPos":4622,"endPos":4654,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Property","id":1309,"sourceAnchor":{"ref":1308},"comments":[],"incomingImports":[],"name":"router","decorators":[],"incomingAccesses":[],"declaredType":{"ref":169},"readOnly":true,"isClassSide":false,"parentType":{"ref":1215},"visibility":"private"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1310,"element":{"ref":1311},"startPos":2549,"endPos":2590,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1311,"sourceAnchor":{"ref":1310},"comments":[],"incomingImports":[],"name":"userService","decorators":[],"incomingAccesses":[{"ref":2820}],"declaredType":{"ref":33},"parentBehaviouralEntity":{"ref":1290}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1312,"element":{"ref":1313},"startPos":4622,"endPos":4664,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Property","id":1313,"sourceAnchor":{"ref":1312},"comments":[],"incomingImports":[],"name":"userService","decorators":[],"incomingAccesses":[],"declaredType":{"ref":33},"readOnly":true,"isClassSide":false,"parentType":{"ref":1215},"visibility":"private"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1314,"element":{"ref":1315},"startPos":2847,"endPos":2951,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1315,"sourceAnchor":{"ref":1314},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":2,"numberOfLinesOfCode":3,"types":[],"functions":[{"ref":1319}],"localVariables":[],"signature":"(err) => any","parameters":[{"ref":1317}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1316,"element":{"ref":1317},"startPos":2848,"endPos":2851,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1317,"sourceAnchor":{"ref":1316},"comments":[],"incomingImports":[],"name":"err","decorators":[],"incomingAccesses":[{"ref":2821}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":1315}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1318,"element":{"ref":1319},"startPos":2930,"endPos":2939,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1319,"sourceAnchor":{"ref":1318},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"() => any","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1320,"element":{"ref":1321},"startPos":2930,"endPos":2939,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1321,"sourceAnchor":{"ref":1320},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"() => any","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1322,"element":{"ref":1323},"startPos":3024,"endPos":3253,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1323,"sourceAnchor":{"ref":1322},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":4,"numberOfLinesOfCode":5,"types":[],"functions":[],"localVariables":[],"signature":"([article, comments, currentUser]) => void","parameters":[{"ref":1325}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1324,"element":{"ref":1325},"startPos":3025,"endPos":3057,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1325,"sourceAnchor":{"ref":1324},"comments":[],"incomingImports":[],"name":"[article, comments, currentUser]","decorators":[],"incomingAccesses":[],"declaredType":{"ref":1251},"parentBehaviouralEntity":{"ref":1323}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1326,"element":{"ref":1327},"startPos":3750,"endPos":3807,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1327,"sourceAnchor":{"ref":1326},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":1,"numberOfLinesOfCode":2,"types":[],"functions":[],"localVariables":[],"signature":"() => void","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1328,"element":{"ref":1329},"startPos":4062,"endPos":4206,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1329,"sourceAnchor":{"ref":1328},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":3,"numberOfLinesOfCode":4,"types":[],"functions":[],"localVariables":[],"signature":"(comment) => void","parameters":[{"ref":1331}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1330,"element":{"ref":1331},"startPos":4063,"endPos":4070,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1331,"sourceAnchor":{"ref":1330},"comments":[],"incomingImports":[],"name":"comment","decorators":[],"incomingAccesses":[{"ref":2822}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":1329}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1332,"element":{"ref":1333},"startPos":4223,"endPos":4326,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1333,"sourceAnchor":{"ref":1332},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":2,"numberOfLinesOfCode":3,"types":[],"functions":[],"localVariables":[],"signature":"(errors) => void","parameters":[{"ref":1335}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1334,"element":{"ref":1335},"startPos":4224,"endPos":4230,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1335,"sourceAnchor":{"ref":1334},"comments":[],"incomingImports":[],"name":"errors","decorators":[],"incomingAccesses":[{"ref":2823}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":1333}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1336,"element":{"ref":1337},"startPos":4521,"endPos":4610,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1337,"sourceAnchor":{"ref":1336},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":1,"numberOfLinesOfCode":2,"types":[],"functions":[{"ref":1339}],"localVariables":[],"signature":"() => void","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1338,"element":{"ref":1339},"startPos":4574,"endPos":4600,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1339,"sourceAnchor":{"ref":1338},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(item) => boolean","parameters":[{"ref":1341}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":63}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1340,"element":{"ref":1341},"startPos":4575,"endPos":4579,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1341,"sourceAnchor":{"ref":1340},"comments":[],"incomingImports":[],"name":"item","decorators":[],"incomingAccesses":[{"ref":2824}],"declaredType":{"ref":619},"parentBehaviouralEntity":{"ref":1339}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1342,"element":{"ref":1343},"startPos":4574,"endPos":4600,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1343,"sourceAnchor":{"ref":1342},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(item) => boolean","parameters":[{"ref":1345}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":63}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1344,"element":{"ref":1345},"startPos":4575,"endPos":4579,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1345,"sourceAnchor":{"ref":1344},"comments":[],"incomingImports":[],"name":"item","decorators":[],"incomingAccesses":[{"ref":2825}],"declaredType":{"ref":619},"parentBehaviouralEntity":{"ref":1343}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1346,"element":{"ref":1347},"startPos":1,"endPos":3120,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.Module","id":1347,"sourceAnchor":{"ref":1346},"comments":[],"incomingImports":[],"name":"editor.component.ts","decorators":[],"types":[{"ref":1349},{"ref":1419}],"functions":[{"ref":1427},{"ref":1431},{"ref":1435},{"ref":1439}],"localVariables":[],"outgoingImports":[{"ref":2410},{"ref":2414},{"ref":2418},{"ref":2422},{"ref":2426},{"ref":2430},{"ref":2434},{"ref":2438},{"ref":2442},{"ref":2446},{"ref":2450},{"ref":2454},{"ref":2455},{"ref":2456},{"ref":2457},{"ref":2458},{"ref":2462}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1348,"element":{"ref":1349},"startPos":800,"endPos":3119,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.Class","id":1349,"sourceAnchor":{"ref":1348},"comments":[],"incomingImports":[],"name":"EditorComponent","decorators":[{"ref":1351}],"types":[{"ref":1355},{"ref":1400}],"functions":[],"localVariables":[],"incomingReferences":[],"isAbstract":false,"attributes":[{"ref":1353},{"ref":1357},{"ref":1359},{"ref":1361},{"ref":1363},{"ref":1365},{"ref":1405},{"ref":1409},{"ref":1413},{"ref":1417}],"methods":[{"ref":1366},{"ref":1374},{"ref":1380},{"ref":1388},{"ref":1398}],"superInheritances":[{"ref":2939}],"subInheritances":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1350,"element":{"ref":1351},"startPos":800,"endPos":972,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.Decorator","id":1351,"sourceAnchor":{"ref":1350},"comments":[],"incomingImports":[],"name":"@Component","decorators":[],"expression":"Component({\n selector: \"app-editor-page\",\n templateUrl: \"./editor.component.html\",\n imports: [ListErrorsComponent, ReactiveFormsModule, NgForOf],\n standalone: true,\n})","decoratedEntity":{"ref":1349}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1352,"element":{"ref":1353},"startPos":1032,"endPos":1055,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.Property","id":1353,"sourceAnchor":{"ref":1352},"comments":[],"incomingImports":[],"name":"tagList","decorators":[],"incomingAccesses":[{"ref":2826},{"ref":2827},{"ref":2828},{"ref":2829}],"declaredType":{"ref":461},"readOnly":false,"isClassSide":false,"parentType":{"ref":1349},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1354,"element":{"ref":1355},"startPos":1058,"endPos":1294,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.Type","id":1355,"sourceAnchor":{"ref":1354},"comments":[],"incomingImports":[],"name":"UntypedFormGroup","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":1349},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1356,"element":{"ref":1357},"startPos":1058,"endPos":1294,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.Property","id":1357,"sourceAnchor":{"ref":1356},"comments":[],"incomingImports":[],"name":"articleForm","decorators":[],"incomingAccesses":[{"ref":2830},{"ref":2831}],"declaredType":{"ref":1355},"readOnly":false,"isClassSide":false,"parentType":{"ref":1349},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1358,"element":{"ref":1359},"startPos":1297,"endPos":1359,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.Property","id":1359,"sourceAnchor":{"ref":1358},"comments":[],"incomingImports":[],"name":"tagField","decorators":[],"incomingAccesses":[{"ref":2832}],"declaredType":{"ref":9},"readOnly":false,"isClassSide":false,"parentType":{"ref":1349},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1360,"element":{"ref":1361},"startPos":1363,"endPos":1392,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.Property","id":1361,"sourceAnchor":{"ref":1360},"comments":[],"incomingImports":[],"name":"errors","decorators":[],"incomingAccesses":[{"ref":2833}],"declaredType":{"ref":399},"readOnly":false,"isClassSide":false,"parentType":{"ref":1349},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1362,"element":{"ref":1363},"startPos":1395,"endPos":1416,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.Property","id":1363,"sourceAnchor":{"ref":1362},"comments":[],"incomingImports":[],"name":"isSubmitting","decorators":[],"incomingAccesses":[{"ref":2834}],"declaredType":{"ref":63},"readOnly":false,"isClassSide":false,"parentType":{"ref":1349},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1364,"element":{"ref":1365},"startPos":1419,"endPos":1451,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.Property","id":1365,"sourceAnchor":{"ref":1364},"comments":[],"incomingImports":[],"name":"destroyRef","decorators":[],"incomingAccesses":[{"ref":2835},{"ref":2836}],"declaredType":{"ref":9},"readOnly":false,"isClassSide":false,"parentType":{"ref":1349},"visibility":""},{"FM3":"FamixTypeScript.Method","id":1366,"sourceAnchor":{"ref":1367},"comments":[],"incomingImports":[],"name":"ngOnInit","decorators":[],"cyclomaticComplexity":2,"numberOfStatements":1,"numberOfLinesOfCode":16,"types":[{"ref":1371}],"functions":[{"ref":1369}],"localVariables":[],"signature":"ngOnInit()","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":5},"parentType":{"ref":1349},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1367,"element":{"ref":1366},"startPos":1660,"endPos":2210,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1368,"element":{"ref":1369},"startPos":1932,"endPos":2198,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1369,"sourceAnchor":{"ref":1368},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":1,"numberOfLinesOfCode":7,"types":[],"functions":[],"localVariables":[],"signature":"([article, { user }]) => void","parameters":[{"ref":1373}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1370,"element":{"ref":1371},"startPos":1933,"endPos":1952,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.Type","id":1371,"sourceAnchor":{"ref":1370},"comments":[],"incomingImports":[],"name":"[any, { user: any; }]","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":1366},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1372,"element":{"ref":1373},"startPos":1933,"endPos":1952,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1373,"sourceAnchor":{"ref":1372},"comments":[],"incomingImports":[],"name":"[article, { user }]","decorators":[],"incomingAccesses":[],"declaredType":{"ref":1371},"parentBehaviouralEntity":{"ref":1369}},{"FM3":"FamixTypeScript.Method","id":1374,"sourceAnchor":{"ref":1375},"comments":[],"incomingImports":[],"name":"addTag","decorators":[],"cyclomaticComplexity":4,"numberOfStatements":3,"numberOfLinesOfCode":9,"types":[],"functions":[],"localVariables":[{"ref":1377}],"signature":"addTag()","parameters":[],"numberOfParameters":0,"incomingInvocations":[{"ref":2912}],"declaredType":{"ref":5},"parentType":{"ref":1349},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1375,"element":{"ref":1374},"startPos":2214,"endPos":2503,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1376,"element":{"ref":1377},"startPos":2263,"endPos":2288,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.Variable","id":1377,"sourceAnchor":{"ref":1376},"comments":[{"ref":1379}],"incomingImports":[],"name":"tag","decorators":[],"incomingAccesses":[{"ref":2837}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":1374}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1378,"element":{"ref":1379},"startPos":2229,"endPos":2252,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.Comment","id":1379,"sourceAnchor":{"ref":1378},"comments":[],"isJSDoc":false,"commentedEntity":{"ref":1377}},{"FM3":"FamixTypeScript.Method","id":1380,"sourceAnchor":{"ref":1381},"comments":[],"incomingImports":[],"name":"removeTag","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":1,"numberOfLinesOfCode":2,"types":[],"functions":[{"ref":1385}],"localVariables":[],"signature":"removeTag(tagName: string): void","parameters":[{"ref":1383}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5},"parentType":{"ref":1349},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1381,"element":{"ref":1380},"startPos":2507,"endPos":2611,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1382,"element":{"ref":1383},"startPos":2517,"endPos":2532,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1383,"sourceAnchor":{"ref":1382},"comments":[],"incomingImports":[],"name":"tagName","decorators":[],"incomingAccesses":[{"ref":2838}],"declaredType":{"ref":123},"parentBehaviouralEntity":{"ref":1380}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1384,"element":{"ref":1385},"startPos":2581,"endPos":2605,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1385,"sourceAnchor":{"ref":1384},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(tag) => boolean","parameters":[{"ref":1387}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":63}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1386,"element":{"ref":1387},"startPos":2582,"endPos":2585,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1387,"sourceAnchor":{"ref":1386},"comments":[],"incomingImports":[],"name":"tag","decorators":[],"incomingAccesses":[{"ref":2839}],"declaredType":{"ref":123},"parentBehaviouralEntity":{"ref":1385}},{"FM3":"FamixTypeScript.Method","id":1388,"sourceAnchor":{"ref":1389},"comments":[],"incomingImports":[],"name":"submitForm","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":3,"numberOfLinesOfCode":20,"types":[],"functions":[{"ref":1391},{"ref":1395}],"localVariables":[],"signature":"submitForm(): void","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":5},"parentType":{"ref":1349},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1389,"element":{"ref":1388},"startPos":2615,"endPos":3117,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1390,"element":{"ref":1391},"startPos":2937,"endPos":2999,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1391,"sourceAnchor":{"ref":1390},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(article) => any","parameters":[{"ref":1393}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1392,"element":{"ref":1393},"startPos":2938,"endPos":2945,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1393,"sourceAnchor":{"ref":1392},"comments":[],"incomingImports":[],"name":"article","decorators":[],"incomingAccesses":[{"ref":2840}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":1391}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1394,"element":{"ref":1395},"startPos":3016,"endPos":3102,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1395,"sourceAnchor":{"ref":1394},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":2,"numberOfLinesOfCode":3,"types":[],"functions":[],"localVariables":[],"signature":"(err) => void","parameters":[{"ref":1397}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1396,"element":{"ref":1397},"startPos":3017,"endPos":3020,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1397,"sourceAnchor":{"ref":1396},"comments":[],"incomingImports":[],"name":"err","decorators":[],"incomingAccesses":[{"ref":2841}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":1395}},{"FM3":"FamixTypeScript.Method","id":1398,"sourceAnchor":{"ref":1401},"comments":[],"incomingImports":[],"name":"constructor","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":5,"types":[],"functions":[],"localVariables":[],"signature":"constructor(\n private readonly articleService: ArticlesService,\n private readonly route: ActivatedRoute,\n private readonly router: Router,\n private readonly userService: UserService,\n )","parameters":[{"ref":1403},{"ref":1407},{"ref":1411},{"ref":1415}],"numberOfParameters":4,"incomingInvocations":[],"declaredType":{"ref":1400},"parentType":{"ref":1349},"kind":"constructor","isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1399,"element":{"ref":1400},"startPos":1455,"endPos":1656,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.Type","id":1400,"sourceAnchor":{"ref":1399},"comments":[],"incomingImports":[],"name":"import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/article/pages/editor/editor.component\").default","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":1349},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1401,"element":{"ref":1398},"startPos":1455,"endPos":1656,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1402,"element":{"ref":1403},"startPos":1472,"endPos":1520,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1403,"sourceAnchor":{"ref":1402},"comments":[],"incomingImports":[],"name":"articleService","decorators":[],"incomingAccesses":[{"ref":2842},{"ref":2843}],"declaredType":{"ref":697},"parentBehaviouralEntity":{"ref":1398}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1404,"element":{"ref":1405},"startPos":3123,"endPos":3172,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.Property","id":1405,"sourceAnchor":{"ref":1404},"comments":[],"incomingImports":[],"name":"articleService","decorators":[],"incomingAccesses":[],"declaredType":{"ref":697},"readOnly":true,"isClassSide":false,"parentType":{"ref":1349},"visibility":"private"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1406,"element":{"ref":1407},"startPos":1526,"endPos":1564,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1407,"sourceAnchor":{"ref":1406},"comments":[],"incomingImports":[],"name":"route","decorators":[],"incomingAccesses":[{"ref":2844}],"declaredType":{"ref":163},"parentBehaviouralEntity":{"ref":1398}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1408,"element":{"ref":1409},"startPos":3123,"endPos":3162,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.Property","id":1409,"sourceAnchor":{"ref":1408},"comments":[],"incomingImports":[],"name":"route","decorators":[],"incomingAccesses":[],"declaredType":{"ref":163},"readOnly":true,"isClassSide":false,"parentType":{"ref":1349},"visibility":"private"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1410,"element":{"ref":1411},"startPos":1570,"endPos":1601,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1411,"sourceAnchor":{"ref":1410},"comments":[],"incomingImports":[],"name":"router","decorators":[],"incomingAccesses":[{"ref":2845},{"ref":2846}],"declaredType":{"ref":169},"parentBehaviouralEntity":{"ref":1398}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1412,"element":{"ref":1413},"startPos":3123,"endPos":3155,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.Property","id":1413,"sourceAnchor":{"ref":1412},"comments":[],"incomingImports":[],"name":"router","decorators":[],"incomingAccesses":[],"declaredType":{"ref":169},"readOnly":true,"isClassSide":false,"parentType":{"ref":1349},"visibility":"private"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1414,"element":{"ref":1415},"startPos":1607,"endPos":1648,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1415,"sourceAnchor":{"ref":1414},"comments":[],"incomingImports":[],"name":"userService","decorators":[],"incomingAccesses":[{"ref":2847}],"declaredType":{"ref":33},"parentBehaviouralEntity":{"ref":1398}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1416,"element":{"ref":1417},"startPos":3123,"endPos":3165,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.Property","id":1417,"sourceAnchor":{"ref":1416},"comments":[],"incomingImports":[],"name":"userService","decorators":[],"incomingAccesses":[],"declaredType":{"ref":33},"readOnly":true,"isClassSide":false,"parentType":{"ref":1349},"visibility":"private"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1418,"element":{"ref":1419},"startPos":678,"endPos":798,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.Interface","id":1419,"sourceAnchor":{"ref":1418},"comments":[],"incomingImports":[],"name":"ArticleForm","decorators":[],"types":[],"functions":[],"localVariables":[],"incomingReferences":[],"attributes":[{"ref":1421},{"ref":1423},{"ref":1425}],"methods":[],"superInheritances":[],"subInheritances":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1420,"element":{"ref":1421},"startPos":704,"endPos":731,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.Property","id":1421,"sourceAnchor":{"ref":1420},"comments":[],"incomingImports":[],"name":"title","decorators":[],"incomingAccesses":[],"declaredType":{"ref":183},"readOnly":false,"isClassSide":false,"parentType":{"ref":1419},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1422,"element":{"ref":1423},"startPos":734,"endPos":767,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.Property","id":1423,"sourceAnchor":{"ref":1422},"comments":[],"incomingImports":[],"name":"description","decorators":[],"incomingAccesses":[],"declaredType":{"ref":183},"readOnly":false,"isClassSide":false,"parentType":{"ref":1419},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1424,"element":{"ref":1425},"startPos":770,"endPos":796,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.Property","id":1425,"sourceAnchor":{"ref":1424},"comments":[],"incomingImports":[],"name":"body","decorators":[],"incomingAccesses":[],"declaredType":{"ref":183},"readOnly":false,"isClassSide":false,"parentType":{"ref":1419},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1426,"element":{"ref":1427},"startPos":1932,"endPos":2198,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1427,"sourceAnchor":{"ref":1426},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":1,"numberOfLinesOfCode":7,"types":[],"functions":[],"localVariables":[],"signature":"([article, { user }]) => void","parameters":[{"ref":1429}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1428,"element":{"ref":1429},"startPos":1933,"endPos":1952,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1429,"sourceAnchor":{"ref":1428},"comments":[],"incomingImports":[],"name":"[article, { user }]","decorators":[],"incomingAccesses":[],"declaredType":{"ref":1371},"parentBehaviouralEntity":{"ref":1427}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1430,"element":{"ref":1431},"startPos":2581,"endPos":2605,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1431,"sourceAnchor":{"ref":1430},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(tag) => boolean","parameters":[{"ref":1433}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":63}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1432,"element":{"ref":1433},"startPos":2582,"endPos":2585,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1433,"sourceAnchor":{"ref":1432},"comments":[],"incomingImports":[],"name":"tag","decorators":[],"incomingAccesses":[{"ref":2848}],"declaredType":{"ref":123},"parentBehaviouralEntity":{"ref":1431}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1434,"element":{"ref":1435},"startPos":2937,"endPos":2999,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1435,"sourceAnchor":{"ref":1434},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(article) => any","parameters":[{"ref":1437}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1436,"element":{"ref":1437},"startPos":2938,"endPos":2945,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1437,"sourceAnchor":{"ref":1436},"comments":[],"incomingImports":[],"name":"article","decorators":[],"incomingAccesses":[{"ref":2849}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":1435}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1438,"element":{"ref":1439},"startPos":3016,"endPos":3102,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1439,"sourceAnchor":{"ref":1438},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":2,"numberOfLinesOfCode":3,"types":[],"functions":[],"localVariables":[],"signature":"(err) => void","parameters":[{"ref":1441}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1440,"element":{"ref":1441},"startPos":3017,"endPos":3020,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1441,"sourceAnchor":{"ref":1440},"comments":[],"incomingImports":[],"name":"err","decorators":[],"incomingAccesses":[{"ref":2850}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":1439}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1442,"element":{"ref":1443},"startPos":1,"endPos":2172,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.Module","id":1443,"sourceAnchor":{"ref":1442},"comments":[],"incomingImports":[],"name":"home.component.ts","decorators":[],"types":[{"ref":1445}],"functions":[{"ref":1489},{"ref":1491},{"ref":1495}],"localVariables":[],"outgoingImports":[{"ref":2466},{"ref":2470},{"ref":2474},{"ref":2478},{"ref":2482},{"ref":2485},{"ref":2486},{"ref":2490},{"ref":2494},{"ref":2498},{"ref":2499},{"ref":2503},{"ref":2504},{"ref":2508},{"ref":2509},{"ref":2513}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1444,"element":{"ref":1445},"startPos":714,"endPos":2171,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.Class","id":1445,"sourceAnchor":{"ref":1444},"comments":[],"incomingImports":[],"name":"HomeComponent","decorators":[{"ref":1447}],"types":[{"ref":1478}],"functions":[],"localVariables":[],"incomingReferences":[],"isAbstract":false,"attributes":[{"ref":1449},{"ref":1451},{"ref":1453},{"ref":1455},{"ref":1457},{"ref":1483},{"ref":1487}],"methods":[{"ref":1458},{"ref":1468},{"ref":1476}],"superInheritances":[{"ref":2942}],"subInheritances":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1446,"element":{"ref":1447},"startPos":714,"endPos":983,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.Decorator","id":1447,"sourceAnchor":{"ref":1446},"comments":[],"incomingImports":[],"name":"@Component","decorators":[],"expression":"Component({\n selector: \"app-home-page\",\n templateUrl: \"./home.component.html\",\n styleUrls: [\"./home.component.css\"],\n imports: [\n NgClass,\n ArticleListComponent,\n AsyncPipe,\n RxLet,\n NgForOf,\n IfAuthenticatedDirective,\n ],\n standalone: true,\n})","decoratedEntity":{"ref":1445}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1448,"element":{"ref":1449},"startPos":1041,"endPos":1065,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.Property","id":1449,"sourceAnchor":{"ref":1448},"comments":[],"incomingImports":[],"name":"isAuthenticated","decorators":[],"incomingAccesses":[{"ref":2851},{"ref":2852}],"declaredType":{"ref":63},"readOnly":false,"isClassSide":false,"parentType":{"ref":1445},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1450,"element":{"ref":1451},"startPos":1068,"endPos":1140,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.Property","id":1451,"sourceAnchor":{"ref":1450},"comments":[],"incomingImports":[],"name":"listConfig","decorators":[],"incomingAccesses":[{"ref":2853}],"declaredType":{"ref":643},"readOnly":false,"isClassSide":false,"parentType":{"ref":1445},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1452,"element":{"ref":1453},"startPos":1143,"endPos":1232,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.Property","id":1453,"sourceAnchor":{"ref":1452},"comments":[],"incomingImports":[],"name":"tags$","decorators":[],"incomingAccesses":[],"declaredType":{"ref":9},"readOnly":false,"isClassSide":false,"parentType":{"ref":1445},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1454,"element":{"ref":1455},"startPos":1235,"endPos":1254,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.Property","id":1455,"sourceAnchor":{"ref":1454},"comments":[],"incomingImports":[],"name":"tagsLoaded","decorators":[],"incomingAccesses":[],"declaredType":{"ref":63},"readOnly":false,"isClassSide":false,"parentType":{"ref":1445},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1456,"element":{"ref":1457},"startPos":1257,"endPos":1289,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.Property","id":1457,"sourceAnchor":{"ref":1456},"comments":[],"incomingImports":[],"name":"destroyRef","decorators":[],"incomingAccesses":[{"ref":2854}],"declaredType":{"ref":9},"readOnly":false,"isClassSide":false,"parentType":{"ref":1445},"visibility":""},{"FM3":"FamixTypeScript.Method","id":1458,"sourceAnchor":{"ref":1459},"comments":[],"incomingImports":[],"name":"ngOnInit","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":1,"numberOfLinesOfCode":15,"types":[],"functions":[{"ref":1461},{"ref":1465}],"localVariables":[],"signature":"ngOnInit(): void","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":5},"parentType":{"ref":1445},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1459,"element":{"ref":1458},"startPos":1400,"endPos":1814,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1460,"element":{"ref":1461},"startPos":1481,"endPos":1648,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1461,"sourceAnchor":{"ref":1460},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":1,"numberOfLinesOfCode":6,"types":[],"functions":[],"localVariables":[],"signature":"(isAuthenticated) => void","parameters":[{"ref":1463}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1462,"element":{"ref":1463},"startPos":1482,"endPos":1497,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1463,"sourceAnchor":{"ref":1462},"comments":[],"incomingImports":[],"name":"isAuthenticated","decorators":[],"incomingAccesses":[{"ref":2855}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":1461}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1464,"element":{"ref":1465},"startPos":1730,"endPos":1800,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1465,"sourceAnchor":{"ref":1464},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(isAuthenticated: boolean) => boolean","parameters":[{"ref":1467}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":63}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1466,"element":{"ref":1467},"startPos":1731,"endPos":1755,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1467,"sourceAnchor":{"ref":1466},"comments":[],"incomingImports":[],"name":"isAuthenticated","decorators":[],"incomingAccesses":[{"ref":2856}],"declaredType":{"ref":63},"parentBehaviouralEntity":{"ref":1465}},{"FM3":"FamixTypeScript.Method","id":1468,"sourceAnchor":{"ref":1469},"comments":[],"incomingImports":[],"name":"setListTo","decorators":[],"cyclomaticComplexity":3,"numberOfStatements":2,"numberOfLinesOfCode":9,"types":[{"ref":1473}],"functions":[],"localVariables":[],"signature":"setListTo(type: string = \"\", filters: Object =","parameters":[{"ref":1471},{"ref":1475}],"numberOfParameters":2,"incomingInvocations":[{"ref":2913},{"ref":2914},{"ref":2915}],"declaredType":{"ref":5},"parentType":{"ref":1445},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1469,"element":{"ref":1468},"startPos":1818,"endPos":2169,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1470,"element":{"ref":1471},"startPos":1828,"endPos":1845,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1471,"sourceAnchor":{"ref":1470},"comments":[],"incomingImports":[],"name":"type","decorators":[],"incomingAccesses":[{"ref":2857}],"declaredType":{"ref":123},"parentBehaviouralEntity":{"ref":1468}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1472,"element":{"ref":1473},"startPos":1847,"endPos":1867,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.Type","id":1473,"sourceAnchor":{"ref":1472},"comments":[],"incomingImports":[],"name":"Object","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":1468},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1474,"element":{"ref":1475},"startPos":1847,"endPos":1867,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1475,"sourceAnchor":{"ref":1474},"comments":[],"incomingImports":[],"name":"filters","decorators":[],"incomingAccesses":[{"ref":2858}],"declaredType":{"ref":1473},"parentBehaviouralEntity":{"ref":1468}},{"FM3":"FamixTypeScript.Method","id":1476,"sourceAnchor":{"ref":1479},"comments":[],"incomingImports":[],"name":"constructor","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":3,"types":[],"functions":[],"localVariables":[],"signature":"constructor(\n private readonly router: Router,\n private readonly userService: UserService,\n )","parameters":[{"ref":1481},{"ref":1485}],"numberOfParameters":2,"incomingInvocations":[],"declaredType":{"ref":1478},"parentType":{"ref":1445},"kind":"constructor","isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1477,"element":{"ref":1478},"startPos":1293,"endPos":1396,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.Type","id":1478,"sourceAnchor":{"ref":1477},"comments":[],"incomingImports":[],"name":"import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/article/pages/home/home.component\").default","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":1445},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1479,"element":{"ref":1476},"startPos":1293,"endPos":1396,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1480,"element":{"ref":1481},"startPos":1310,"endPos":1341,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1481,"sourceAnchor":{"ref":1480},"comments":[],"incomingImports":[],"name":"router","decorators":[],"incomingAccesses":[{"ref":2859}],"declaredType":{"ref":169},"parentBehaviouralEntity":{"ref":1476}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1482,"element":{"ref":1483},"startPos":2175,"endPos":2207,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.Property","id":1483,"sourceAnchor":{"ref":1482},"comments":[],"incomingImports":[],"name":"router","decorators":[],"incomingAccesses":[],"declaredType":{"ref":169},"readOnly":true,"isClassSide":false,"parentType":{"ref":1445},"visibility":"private"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1484,"element":{"ref":1485},"startPos":1347,"endPos":1388,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1485,"sourceAnchor":{"ref":1484},"comments":[],"incomingImports":[],"name":"userService","decorators":[],"incomingAccesses":[{"ref":2860}],"declaredType":{"ref":33},"parentBehaviouralEntity":{"ref":1476}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1486,"element":{"ref":1487},"startPos":2175,"endPos":2217,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.Property","id":1487,"sourceAnchor":{"ref":1486},"comments":[],"incomingImports":[],"name":"userService","decorators":[],"incomingAccesses":[],"declaredType":{"ref":33},"readOnly":true,"isClassSide":false,"parentType":{"ref":1445},"visibility":"private"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1488,"element":{"ref":1489},"startPos":1199,"endPos":1229,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1489,"sourceAnchor":{"ref":1488},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"() => boolean","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":63}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1490,"element":{"ref":1491},"startPos":1481,"endPos":1648,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1491,"sourceAnchor":{"ref":1490},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":1,"numberOfLinesOfCode":6,"types":[],"functions":[],"localVariables":[],"signature":"(isAuthenticated) => void","parameters":[{"ref":1493}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1492,"element":{"ref":1493},"startPos":1482,"endPos":1497,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1493,"sourceAnchor":{"ref":1492},"comments":[],"incomingImports":[],"name":"isAuthenticated","decorators":[],"incomingAccesses":[{"ref":2861}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":1491}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1494,"element":{"ref":1495},"startPos":1730,"endPos":1800,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1495,"sourceAnchor":{"ref":1494},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"(isAuthenticated: boolean) => boolean","parameters":[{"ref":1497}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":63}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1496,"element":{"ref":1497},"startPos":1731,"endPos":1755,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1497,"sourceAnchor":{"ref":1496},"comments":[],"incomingImports":[],"name":"isAuthenticated","decorators":[],"incomingAccesses":[{"ref":2862}],"declaredType":{"ref":63},"parentBehaviouralEntity":{"ref":1495}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1498,"element":{"ref":1499},"startPos":1,"endPos":1918,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.Module","id":1499,"sourceAnchor":{"ref":1498},"comments":[],"incomingImports":[],"name":"profile.component.ts","decorators":[],"types":[{"ref":1501}],"functions":[{"ref":1555},{"ref":1561},{"ref":1563},{"ref":1567}],"localVariables":[],"outgoingImports":[{"ref":2517},{"ref":2521},{"ref":2525},{"ref":2529},{"ref":2533},{"ref":2537},{"ref":2541},{"ref":2545},{"ref":2549},{"ref":2553},{"ref":2557},{"ref":2561},{"ref":2565},{"ref":2569},{"ref":2570},{"ref":2571},{"ref":2572},{"ref":2576},{"ref":2580},{"ref":2584},{"ref":2585}]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1500,"element":{"ref":1501},"startPos":688,"endPos":1917,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.Class","id":1501,"sourceAnchor":{"ref":1500},"comments":[],"incomingImports":[],"name":"ProfileComponent","decorators":[{"ref":1503}],"types":[{"ref":1536}],"functions":[],"localVariables":[],"incomingReferences":[],"isAbstract":false,"attributes":[{"ref":1505},{"ref":1507},{"ref":1509},{"ref":1541},{"ref":1545},{"ref":1549},{"ref":1553}],"methods":[{"ref":1510},{"ref":1530},{"ref":1534}],"superInheritances":[{"ref":2945}],"subInheritances":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1502,"element":{"ref":1503},"startPos":688,"endPos":951,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.Decorator","id":1503,"sourceAnchor":{"ref":1502},"comments":[],"incomingImports":[],"name":"@Component","decorators":[],"expression":"Component({\n selector: \"app-profile-page\",\n templateUrl: \"./profile.component.html\",\n imports: [\n FollowButtonComponent,\n NgIf,\n RouterLink,\n AsyncPipe,\n RouterLinkActive,\n RouterOutlet,\n FollowButtonComponent,\n ],\n standalone: true,\n})","decoratedEntity":{"ref":1501}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1504,"element":{"ref":1505},"startPos":1004,"endPos":1022,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.Property","id":1505,"sourceAnchor":{"ref":1504},"comments":[],"incomingImports":[],"name":"profile","decorators":[],"incomingAccesses":[{"ref":2863},{"ref":2864}],"declaredType":{"ref":835},"readOnly":false,"isClassSide":false,"parentType":{"ref":1501},"visibility":"","isDefinitelyAssigned":true},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1506,"element":{"ref":1507},"startPos":1025,"endPos":1049,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.Property","id":1507,"sourceAnchor":{"ref":1506},"comments":[],"incomingImports":[],"name":"isUser","decorators":[],"incomingAccesses":[{"ref":2865}],"declaredType":{"ref":63},"readOnly":false,"isClassSide":false,"parentType":{"ref":1501},"visibility":""},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1508,"element":{"ref":1509},"startPos":1052,"endPos":1084,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.Property","id":1509,"sourceAnchor":{"ref":1508},"comments":[],"incomingImports":[],"name":"destroyRef","decorators":[],"incomingAccesses":[{"ref":2866}],"declaredType":{"ref":9},"readOnly":false,"isClassSide":false,"parentType":{"ref":1501},"visibility":""},{"FM3":"FamixTypeScript.Method","id":1510,"sourceAnchor":{"ref":1511},"comments":[],"incomingImports":[],"name":"ngOnInit","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":1,"numberOfLinesOfCode":17,"types":[{"ref":1527}],"functions":[{"ref":1513},{"ref":1519},{"ref":1521},{"ref":1525}],"localVariables":[],"signature":"ngOnInit()","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":5},"parentType":{"ref":1501},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1511,"element":{"ref":1510},"startPos":1292,"endPos":1842,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1512,"element":{"ref":1513},"startPos":1412,"endPos":1520,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1513,"sourceAnchor":{"ref":1512},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":2,"numberOfLinesOfCode":3,"types":[],"functions":[{"ref":1517}],"localVariables":[],"signature":"(error) => any","parameters":[{"ref":1515}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1514,"element":{"ref":1515},"startPos":1413,"endPos":1418,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1515,"sourceAnchor":{"ref":1514},"comments":[],"incomingImports":[],"name":"error","decorators":[],"incomingAccesses":[{"ref":2867}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":1513}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1516,"element":{"ref":1517},"startPos":1497,"endPos":1508,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1517,"sourceAnchor":{"ref":1516},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"() => any","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1518,"element":{"ref":1519},"startPos":1497,"endPos":1508,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1519,"sourceAnchor":{"ref":1518},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"() => any","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1520,"element":{"ref":1521},"startPos":1541,"endPos":1642,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1521,"sourceAnchor":{"ref":1520},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":1,"numberOfLinesOfCode":2,"types":[],"functions":[],"localVariables":[],"signature":"(profile) => any","parameters":[{"ref":1523}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1522,"element":{"ref":1523},"startPos":1542,"endPos":1549,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1523,"sourceAnchor":{"ref":1522},"comments":[],"incomingImports":[],"name":"profile","decorators":[],"incomingAccesses":[{"ref":2868}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":1521}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1524,"element":{"ref":1525},"startPos":1715,"endPos":1836,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1525,"sourceAnchor":{"ref":1524},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":2,"numberOfLinesOfCode":3,"types":[],"functions":[],"localVariables":[],"signature":"([profile, user]) => void","parameters":[{"ref":1529}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1526,"element":{"ref":1527},"startPos":1716,"endPos":1731,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.Type","id":1527,"sourceAnchor":{"ref":1526},"comments":[],"incomingImports":[],"name":"[any, any]","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":1510},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1528,"element":{"ref":1529},"startPos":1716,"endPos":1731,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1529,"sourceAnchor":{"ref":1528},"comments":[],"incomingImports":[],"name":"[profile, user]","decorators":[],"incomingAccesses":[],"declaredType":{"ref":1527},"parentBehaviouralEntity":{"ref":1525}},{"FM3":"FamixTypeScript.Method","id":1530,"sourceAnchor":{"ref":1531},"comments":[],"incomingImports":[],"name":"onToggleFollowing","decorators":[],"cyclomaticComplexity":1,"numberOfStatements":1,"numberOfLinesOfCode":2,"types":[],"functions":[],"localVariables":[],"signature":"onToggleFollowing(profile: Profile)","parameters":[{"ref":1533}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5},"parentType":{"ref":1501},"isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1531,"element":{"ref":1530},"startPos":1846,"endPos":1915,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1532,"element":{"ref":1533},"startPos":1864,"endPos":1880,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1533,"sourceAnchor":{"ref":1532},"comments":[],"incomingImports":[],"name":"profile","decorators":[],"incomingAccesses":[{"ref":2869}],"declaredType":{"ref":835},"parentBehaviouralEntity":{"ref":1530}},{"FM3":"FamixTypeScript.Method","id":1534,"sourceAnchor":{"ref":1537},"comments":[],"incomingImports":[],"name":"constructor","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":5,"types":[],"functions":[],"localVariables":[],"signature":"constructor(\n private readonly route: ActivatedRoute,\n private readonly router: Router,\n private readonly userService: UserService,\n private readonly profileService: ProfileService,\n )","parameters":[{"ref":1539},{"ref":1543},{"ref":1547},{"ref":1551}],"numberOfParameters":4,"incomingInvocations":[],"declaredType":{"ref":1536},"parentType":{"ref":1501},"kind":"constructor","isAbstract":false,"isClassSide":false,"isPrivate":false,"isPublic":true,"isProtected":false},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1535,"element":{"ref":1536},"startPos":1088,"endPos":1288,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.Type","id":1536,"sourceAnchor":{"ref":1535},"comments":[],"incomingImports":[],"name":"import(\"C:/Users/Cris/Downloads/angular-realworld-example-app-main/src/app/features/profile/pages/profile/profile.component\").ProfileComponent","decorators":[],"types":[],"functions":[],"localVariables":[],"typeContainer":{"ref":1501},"incomingReferences":[]},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1537,"element":{"ref":1534},"startPos":1088,"endPos":1288,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1538,"element":{"ref":1539},"startPos":1105,"endPos":1143,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1539,"sourceAnchor":{"ref":1538},"comments":[],"incomingImports":[],"name":"route","decorators":[],"incomingAccesses":[{"ref":2870}],"declaredType":{"ref":163},"parentBehaviouralEntity":{"ref":1534}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1540,"element":{"ref":1541},"startPos":1921,"endPos":1960,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.Property","id":1541,"sourceAnchor":{"ref":1540},"comments":[],"incomingImports":[],"name":"route","decorators":[],"incomingAccesses":[],"declaredType":{"ref":163},"readOnly":true,"isClassSide":false,"parentType":{"ref":1501},"visibility":"private"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1542,"element":{"ref":1543},"startPos":1149,"endPos":1180,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1543,"sourceAnchor":{"ref":1542},"comments":[],"incomingImports":[],"name":"router","decorators":[],"incomingAccesses":[{"ref":2871}],"declaredType":{"ref":169},"parentBehaviouralEntity":{"ref":1534}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1544,"element":{"ref":1545},"startPos":1921,"endPos":1953,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.Property","id":1545,"sourceAnchor":{"ref":1544},"comments":[],"incomingImports":[],"name":"router","decorators":[],"incomingAccesses":[],"declaredType":{"ref":169},"readOnly":true,"isClassSide":false,"parentType":{"ref":1501},"visibility":"private"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1546,"element":{"ref":1547},"startPos":1186,"endPos":1227,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1547,"sourceAnchor":{"ref":1546},"comments":[],"incomingImports":[],"name":"userService","decorators":[],"incomingAccesses":[{"ref":2872}],"declaredType":{"ref":33},"parentBehaviouralEntity":{"ref":1534}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1548,"element":{"ref":1549},"startPos":1921,"endPos":1963,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.Property","id":1549,"sourceAnchor":{"ref":1548},"comments":[],"incomingImports":[],"name":"userService","decorators":[],"incomingAccesses":[],"declaredType":{"ref":33},"readOnly":true,"isClassSide":false,"parentType":{"ref":1501},"visibility":"private"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1550,"element":{"ref":1551},"startPos":1233,"endPos":1280,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1551,"sourceAnchor":{"ref":1550},"comments":[],"incomingImports":[],"name":"profileService","decorators":[],"incomingAccesses":[{"ref":2873}],"declaredType":{"ref":1057},"parentBehaviouralEntity":{"ref":1534}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1552,"element":{"ref":1553},"startPos":1921,"endPos":1969,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.Property","id":1553,"sourceAnchor":{"ref":1552},"comments":[],"incomingImports":[],"name":"profileService","decorators":[],"incomingAccesses":[],"declaredType":{"ref":1057},"readOnly":true,"isClassSide":false,"parentType":{"ref":1501},"visibility":"private"},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1554,"element":{"ref":1555},"startPos":1412,"endPos":1520,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1555,"sourceAnchor":{"ref":1554},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":2,"numberOfLinesOfCode":3,"types":[],"functions":[{"ref":1559}],"localVariables":[],"signature":"(error) => any","parameters":[{"ref":1557}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1556,"element":{"ref":1557},"startPos":1413,"endPos":1418,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1557,"sourceAnchor":{"ref":1556},"comments":[],"incomingImports":[],"name":"error","decorators":[],"incomingAccesses":[{"ref":2874}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":1555}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1558,"element":{"ref":1559},"startPos":1497,"endPos":1508,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1559,"sourceAnchor":{"ref":1558},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"() => any","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1560,"element":{"ref":1561},"startPos":1497,"endPos":1508,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1561,"sourceAnchor":{"ref":1560},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":0,"numberOfLinesOfCode":0,"types":[],"functions":[],"localVariables":[],"signature":"() => any","parameters":[],"numberOfParameters":0,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1562,"element":{"ref":1563},"startPos":1541,"endPos":1642,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1563,"sourceAnchor":{"ref":1562},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":1,"numberOfLinesOfCode":2,"types":[],"functions":[],"localVariables":[],"signature":"(profile) => any","parameters":[{"ref":1565}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":9}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1564,"element":{"ref":1565},"startPos":1542,"endPos":1549,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1565,"sourceAnchor":{"ref":1564},"comments":[],"incomingImports":[],"name":"profile","decorators":[],"incomingAccesses":[{"ref":2875}],"declaredType":{"ref":9},"parentBehaviouralEntity":{"ref":1563}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1566,"element":{"ref":1567},"startPos":1715,"endPos":1836,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.ArrowFunction","id":1567,"sourceAnchor":{"ref":1566},"comments":[],"incomingImports":[],"name":"(NO_NAME)","decorators":[],"numberOfStatements":2,"numberOfLinesOfCode":3,"types":[],"functions":[],"localVariables":[],"signature":"([profile, user]) => void","parameters":[{"ref":1569}],"numberOfParameters":1,"incomingInvocations":[],"declaredType":{"ref":5}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1568,"element":{"ref":1569},"startPos":1716,"endPos":1731,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.Parameter","id":1569,"sourceAnchor":{"ref":1568},"comments":[],"incomingImports":[],"name":"[profile, user]","decorators":[],"incomingAccesses":[],"declaredType":{"ref":1527},"parentBehaviouralEntity":{"ref":1567}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1570,"element":{"ref":1572},"startPos":10,"endPos":30,"fileName":"src/main.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1572,"isStub":true,"sourceAnchor":{"ref":1570},"comments":[],"incomingImports":[{"ref":1573}],"name":"bootstrapApplication","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1573,"importingEntity":{"ref":3},"importedEntity":{"ref":1572}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1574,"element":{"ref":1575},"startPos":76,"endPos":88,"fileName":"src/main.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1575,"sourceAnchor":{"ref":1574},"comments":[],"incomingImports":[{"ref":1576}],"name":"AppComponent","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1576,"importingEntity":{"ref":3},"importedEntity":{"ref":1575}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1577,"element":{"ref":1578},"startPos":128,"endPos":137,"fileName":"src/main.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1578,"sourceAnchor":{"ref":1577},"comments":[],"incomingImports":[{"ref":1579}],"name":"appConfig","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1579,"importingEntity":{"ref":3},"importedEntity":{"ref":1578}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1580,"element":{"ref":1582},"startPos":10,"endPos":19,"fileName":"src/app/app.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1582,"isStub":true,"sourceAnchor":{"ref":1580},"comments":[],"incomingImports":[{"ref":1583}],"name":"Component","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1583,"importingEntity":{"ref":13},"importedEntity":{"ref":1582}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1584,"element":{"ref":1585},"startPos":53,"endPos":68,"fileName":"src/app/app.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1585,"sourceAnchor":{"ref":1584},"comments":[],"incomingImports":[{"ref":1586}],"name":"HeaderComponent","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1586,"importingEntity":{"ref":13},"importedEntity":{"ref":1585}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1587,"element":{"ref":1589},"startPos":119,"endPos":131,"fileName":"src/app/app.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1589,"isStub":true,"sourceAnchor":{"ref":1587},"comments":[],"incomingImports":[{"ref":1590}],"name":"RouterOutlet","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1590,"importingEntity":{"ref":13},"importedEntity":{"ref":1589}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1591,"element":{"ref":1592},"startPos":167,"endPos":182,"fileName":"src/app/app.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1592,"sourceAnchor":{"ref":1591},"comments":[],"incomingImports":[{"ref":1593}],"name":"FooterComponent","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1593,"importingEntity":{"ref":13},"importedEntity":{"ref":1592}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1594,"element":{"ref":1596},"startPos":10,"endPos":25,"fileName":"src/app/app.config.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1596,"isStub":true,"sourceAnchor":{"ref":1594},"comments":[],"incomingImports":[{"ref":1597}],"name":"APP_INITIALIZER","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1597,"importingEntity":{"ref":19},"importedEntity":{"ref":1596}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1598,"element":{"ref":1600},"startPos":27,"endPos":44,"fileName":"src/app/app.config.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1600,"isStub":true,"sourceAnchor":{"ref":1598},"comments":[],"incomingImports":[{"ref":1601}],"name":"ApplicationConfig","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1601,"importingEntity":{"ref":19},"importedEntity":{"ref":1600}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1602,"element":{"ref":1604},"startPos":78,"endPos":91,"fileName":"src/app/app.config.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1604,"isStub":true,"sourceAnchor":{"ref":1602},"comments":[],"incomingImports":[{"ref":1605}],"name":"provideRouter","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1605,"importingEntity":{"ref":19},"importedEntity":{"ref":1604}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1606,"element":{"ref":1607},"startPos":128,"endPos":134,"fileName":"src/app/app.config.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1607,"sourceAnchor":{"ref":1606},"comments":[],"incomingImports":[{"ref":1608}],"name":"routes","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1608,"importingEntity":{"ref":19},"importedEntity":{"ref":1607}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1609,"element":{"ref":1611},"startPos":167,"endPos":184,"fileName":"src/app/app.config.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1611,"isStub":true,"sourceAnchor":{"ref":1609},"comments":[],"incomingImports":[{"ref":1612}],"name":"provideHttpClient","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1612,"importingEntity":{"ref":19},"importedEntity":{"ref":1611}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1613,"element":{"ref":1615},"startPos":186,"endPos":202,"fileName":"src/app/app.config.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1615,"isStub":true,"sourceAnchor":{"ref":1613},"comments":[],"incomingImports":[{"ref":1616}],"name":"withInterceptors","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1616,"importingEntity":{"ref":19},"importedEntity":{"ref":1615}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1617,"element":{"ref":1618},"startPos":243,"endPos":253,"fileName":"src/app/app.config.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1618,"sourceAnchor":{"ref":1617},"comments":[],"incomingImports":[{"ref":1619},{"ref":1765},{"ref":1916}],"name":"JwtService","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1619,"importingEntity":{"ref":19},"importedEntity":{"ref":1618}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1620,"element":{"ref":1621},"startPos":306,"endPos":317,"fileName":"src/app/app.config.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1621,"sourceAnchor":{"ref":1620},"comments":[],"incomingImports":[{"ref":1622},{"ref":1644},{"ref":1703},{"ref":1736},{"ref":1790},{"ref":1856},{"ref":1962},{"ref":2119},{"ref":2223},{"ref":2358},{"ref":2457},{"ref":2504},{"ref":2570}],"name":"UserService","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1622,"importingEntity":{"ref":19},"importedEntity":{"ref":1621}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1623,"element":{"ref":1624},"startPos":371,"endPos":385,"fileName":"src/app/app.config.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1624,"sourceAnchor":{"ref":1623},"comments":[],"incomingImports":[{"ref":1625}],"name":"apiInterceptor","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1625,"importingEntity":{"ref":19},"importedEntity":{"ref":1624}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1626,"element":{"ref":1627},"startPos":441,"endPos":457,"fileName":"src/app/app.config.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1627,"sourceAnchor":{"ref":1626},"comments":[],"incomingImports":[{"ref":1628}],"name":"tokenInterceptor","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1628,"importingEntity":{"ref":19},"importedEntity":{"ref":1627}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1629,"element":{"ref":1630},"startPos":515,"endPos":531,"fileName":"src/app/app.config.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1630,"sourceAnchor":{"ref":1629},"comments":[],"incomingImports":[{"ref":1631}],"name":"errorInterceptor","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1631,"importingEntity":{"ref":19},"importedEntity":{"ref":1630}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1632,"element":{"ref":1634},"startPos":589,"endPos":594,"fileName":"src/app/app.config.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1634,"isStub":true,"sourceAnchor":{"ref":1632},"comments":[],"incomingImports":[{"ref":1635}],"name":"EMPTY","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1635,"importingEntity":{"ref":19},"importedEntity":{"ref":1634}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1636,"element":{"ref":1638},"startPos":10,"endPos":16,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1638,"isStub":true,"sourceAnchor":{"ref":1636},"comments":[],"incomingImports":[{"ref":1639}],"name":"Routes","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1639,"importingEntity":{"ref":41},"importedEntity":{"ref":1638}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1640,"element":{"ref":1642},"startPos":52,"endPos":58,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1642,"isStub":true,"sourceAnchor":{"ref":1640},"comments":[],"incomingImports":[{"ref":1643}],"name":"inject","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1643,"importingEntity":{"ref":41},"importedEntity":{"ref":1642}},{"FM3":"FamixTypeScript.ImportClause","id":1644,"importingEntity":{"ref":41},"importedEntity":{"ref":1621}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1645,"element":{"ref":1647},"startPos":157,"endPos":160,"fileName":"src/app/app.routes.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1647,"isStub":true,"sourceAnchor":{"ref":1645},"comments":[],"incomingImports":[{"ref":1648}],"name":"map","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1648,"importingEntity":{"ref":41},"importedEntity":{"ref":1647}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1649,"element":{"ref":1651},"startPos":10,"endPos":19,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1651,"isStub":true,"sourceAnchor":{"ref":1649},"comments":[],"incomingImports":[{"ref":1652}],"name":"Component","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1652,"importingEntity":{"ref":117},"importedEntity":{"ref":1651}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1653,"element":{"ref":1655},"startPos":21,"endPos":31,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1655,"isStub":true,"sourceAnchor":{"ref":1653},"comments":[],"incomingImports":[{"ref":1656}],"name":"DestroyRef","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1656,"importingEntity":{"ref":117},"importedEntity":{"ref":1655}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1657,"element":{"ref":1659},"startPos":33,"endPos":39,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1659,"isStub":true,"sourceAnchor":{"ref":1657},"comments":[],"incomingImports":[{"ref":1660}],"name":"inject","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1660,"importingEntity":{"ref":117},"importedEntity":{"ref":1659}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1661,"element":{"ref":1663},"startPos":41,"endPos":47,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1663,"isStub":true,"sourceAnchor":{"ref":1661},"comments":[],"incomingImports":[{"ref":1664}],"name":"OnInit","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1664,"importingEntity":{"ref":117},"importedEntity":{"ref":1663}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1665,"element":{"ref":1667},"startPos":83,"endPos":93,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1667,"isStub":true,"sourceAnchor":{"ref":1665},"comments":[],"incomingImports":[{"ref":1668}],"name":"Validators","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1668,"importingEntity":{"ref":117},"importedEntity":{"ref":1667}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1669,"element":{"ref":1671},"startPos":97,"endPos":106,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1671,"isStub":true,"sourceAnchor":{"ref":1669},"comments":[],"incomingImports":[{"ref":1672}],"name":"FormGroup","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1672,"importingEntity":{"ref":117},"importedEntity":{"ref":1671}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1673,"element":{"ref":1675},"startPos":110,"endPos":121,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1675,"isStub":true,"sourceAnchor":{"ref":1673},"comments":[],"incomingImports":[{"ref":1676}],"name":"FormControl","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1676,"importingEntity":{"ref":117},"importedEntity":{"ref":1675}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1677,"element":{"ref":1679},"startPos":125,"endPos":144,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1679,"isStub":true,"sourceAnchor":{"ref":1677},"comments":[],"incomingImports":[{"ref":1680}],"name":"ReactiveFormsModule","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1680,"importingEntity":{"ref":117},"importedEntity":{"ref":1679}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1681,"element":{"ref":1683},"startPos":180,"endPos":194,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1683,"isStub":true,"sourceAnchor":{"ref":1681},"comments":[],"incomingImports":[{"ref":1684}],"name":"ActivatedRoute","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1684,"importingEntity":{"ref":117},"importedEntity":{"ref":1683}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1685,"element":{"ref":1687},"startPos":196,"endPos":202,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1687,"isStub":true,"sourceAnchor":{"ref":1685},"comments":[],"incomingImports":[{"ref":1688}],"name":"Router","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1688,"importingEntity":{"ref":117},"importedEntity":{"ref":1687}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1689,"element":{"ref":1691},"startPos":204,"endPos":214,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1691,"isStub":true,"sourceAnchor":{"ref":1689},"comments":[],"incomingImports":[{"ref":1692}],"name":"RouterLink","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1692,"importingEntity":{"ref":117},"importedEntity":{"ref":1691}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1693,"element":{"ref":1695},"startPos":250,"endPos":254,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1695,"isStub":true,"sourceAnchor":{"ref":1693},"comments":[],"incomingImports":[{"ref":1696}],"name":"NgIf","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1696,"importingEntity":{"ref":117},"importedEntity":{"ref":1695}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1697,"element":{"ref":1698},"startPos":290,"endPos":309,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1698,"sourceAnchor":{"ref":1697},"comments":[],"incomingImports":[{"ref":1699},{"ref":1857},{"ref":2379},{"ref":2458}],"name":"ListErrorsComponent","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1699,"importingEntity":{"ref":117},"importedEntity":{"ref":1698}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1700,"element":{"ref":1701},"startPos":375,"endPos":381,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1701,"sourceAnchor":{"ref":1700},"comments":[],"incomingImports":[{"ref":1702},{"ref":1858},{"ref":1871},{"ref":2397},{"ref":2455}],"name":"Errors","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1702,"importingEntity":{"ref":117},"importedEntity":{"ref":1701}},{"FM3":"FamixTypeScript.ImportClause","id":1703,"importingEntity":{"ref":117},"importedEntity":{"ref":1621}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1704,"element":{"ref":1706},"startPos":479,"endPos":497,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1706,"isStub":true,"sourceAnchor":{"ref":1704},"comments":[],"incomingImports":[{"ref":1707}],"name":"takeUntilDestroyed","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1707,"importingEntity":{"ref":117},"importedEntity":{"ref":1706}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1708,"element":{"ref":1710},"startPos":12,"endPos":22,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1710,"isStub":true,"sourceAnchor":{"ref":1708},"comments":[],"incomingImports":[{"ref":1711}],"name":"DestroyRef","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1711,"importingEntity":{"ref":197},"importedEntity":{"ref":1710}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1712,"element":{"ref":1714},"startPos":26,"endPos":35,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1714,"isStub":true,"sourceAnchor":{"ref":1712},"comments":[],"incomingImports":[{"ref":1715}],"name":"Directive","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1715,"importingEntity":{"ref":197},"importedEntity":{"ref":1714}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1716,"element":{"ref":1718},"startPos":39,"endPos":45,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1718,"isStub":true,"sourceAnchor":{"ref":1716},"comments":[],"incomingImports":[{"ref":1719}],"name":"inject","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1719,"importingEntity":{"ref":197},"importedEntity":{"ref":1718}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1720,"element":{"ref":1722},"startPos":49,"endPos":54,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1722,"isStub":true,"sourceAnchor":{"ref":1720},"comments":[],"incomingImports":[{"ref":1723}],"name":"Input","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1723,"importingEntity":{"ref":197},"importedEntity":{"ref":1722}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1724,"element":{"ref":1726},"startPos":58,"endPos":64,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1726,"isStub":true,"sourceAnchor":{"ref":1724},"comments":[],"incomingImports":[{"ref":1727}],"name":"OnInit","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1727,"importingEntity":{"ref":197},"importedEntity":{"ref":1726}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1728,"element":{"ref":1730},"startPos":68,"endPos":79,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1730,"isStub":true,"sourceAnchor":{"ref":1728},"comments":[],"incomingImports":[{"ref":1731}],"name":"TemplateRef","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1731,"importingEntity":{"ref":197},"importedEntity":{"ref":1730}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1732,"element":{"ref":1734},"startPos":83,"endPos":99,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1734,"isStub":true,"sourceAnchor":{"ref":1732},"comments":[],"incomingImports":[{"ref":1735}],"name":"ViewContainerRef","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1735,"importingEntity":{"ref":197},"importedEntity":{"ref":1734}},{"FM3":"FamixTypeScript.ImportClause","id":1736,"importingEntity":{"ref":197},"importedEntity":{"ref":1621}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1737,"element":{"ref":1739},"startPos":189,"endPos":207,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1739,"isStub":true,"sourceAnchor":{"ref":1737},"comments":[],"incomingImports":[{"ref":1740}],"name":"takeUntilDestroyed","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1740,"importingEntity":{"ref":197},"importedEntity":{"ref":1739}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1741,"element":{"ref":1743},"startPos":10,"endPos":27,"fileName":"src/app/core/interceptors/api.interceptor.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1743,"isStub":true,"sourceAnchor":{"ref":1741},"comments":[],"incomingImports":[{"ref":1744}],"name":"HttpInterceptorFn","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1744,"importingEntity":{"ref":275},"importedEntity":{"ref":1743}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1745,"element":{"ref":1747},"startPos":10,"endPos":27,"fileName":"src/app/core/interceptors/error.interceptor.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1747,"isStub":true,"sourceAnchor":{"ref":1745},"comments":[],"incomingImports":[{"ref":1748}],"name":"HttpInterceptorFn","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1748,"importingEntity":{"ref":289},"importedEntity":{"ref":1747}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1749,"element":{"ref":1751},"startPos":68,"endPos":78,"fileName":"src/app/core/interceptors/error.interceptor.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1751,"isStub":true,"sourceAnchor":{"ref":1749},"comments":[],"incomingImports":[{"ref":1752}],"name":"throwError","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1752,"importingEntity":{"ref":289},"importedEntity":{"ref":1751}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1753,"element":{"ref":1755},"startPos":103,"endPos":113,"fileName":"src/app/core/interceptors/error.interceptor.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1755,"isStub":true,"sourceAnchor":{"ref":1753},"comments":[],"incomingImports":[{"ref":1756}],"name":"catchError","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1756,"importingEntity":{"ref":289},"importedEntity":{"ref":1755}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1757,"element":{"ref":1759},"startPos":10,"endPos":16,"fileName":"src/app/core/interceptors/token.interceptor.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1759,"isStub":true,"sourceAnchor":{"ref":1757},"comments":[],"incomingImports":[{"ref":1760}],"name":"inject","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1760,"importingEntity":{"ref":315},"importedEntity":{"ref":1759}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1761,"element":{"ref":1763},"startPos":50,"endPos":67,"fileName":"src/app/core/interceptors/token.interceptor.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1763,"isStub":true,"sourceAnchor":{"ref":1761},"comments":[],"incomingImports":[{"ref":1764}],"name":"HttpInterceptorFn","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1764,"importingEntity":{"ref":315},"importedEntity":{"ref":1763}},{"FM3":"FamixTypeScript.ImportClause","id":1765,"importingEntity":{"ref":315},"importedEntity":{"ref":1618}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1766,"element":{"ref":1768},"startPos":10,"endPos":33,"fileName":"src/app/core/layout/footer.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1768,"isStub":true,"sourceAnchor":{"ref":1766},"comments":[],"incomingImports":[{"ref":1769}],"name":"ChangeDetectionStrategy","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1769,"importingEntity":{"ref":329},"importedEntity":{"ref":1768}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1770,"element":{"ref":1772},"startPos":35,"endPos":44,"fileName":"src/app/core/layout/footer.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1772,"isStub":true,"sourceAnchor":{"ref":1770},"comments":[],"incomingImports":[{"ref":1773}],"name":"Component","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1773,"importingEntity":{"ref":329},"importedEntity":{"ref":1772}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1774,"element":{"ref":1776},"startPos":78,"endPos":86,"fileName":"src/app/core/layout/footer.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1776,"isStub":true,"sourceAnchor":{"ref":1774},"comments":[],"incomingImports":[{"ref":1777}],"name":"DatePipe","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1777,"importingEntity":{"ref":329},"importedEntity":{"ref":1776}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1778,"element":{"ref":1780},"startPos":122,"endPos":132,"fileName":"src/app/core/layout/footer.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1780,"isStub":true,"sourceAnchor":{"ref":1778},"comments":[],"incomingImports":[{"ref":1781}],"name":"RouterLink","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1781,"importingEntity":{"ref":329},"importedEntity":{"ref":1780}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1782,"element":{"ref":1784},"startPos":10,"endPos":19,"fileName":"src/app/core/layout/header.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1784,"isStub":true,"sourceAnchor":{"ref":1782},"comments":[],"incomingImports":[{"ref":1785}],"name":"Component","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1785,"importingEntity":{"ref":339},"importedEntity":{"ref":1784}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1786,"element":{"ref":1788},"startPos":21,"endPos":27,"fileName":"src/app/core/layout/header.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1788,"isStub":true,"sourceAnchor":{"ref":1786},"comments":[],"incomingImports":[{"ref":1789}],"name":"inject","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1789,"importingEntity":{"ref":339},"importedEntity":{"ref":1788}},{"FM3":"FamixTypeScript.ImportClause","id":1790,"importingEntity":{"ref":339},"importedEntity":{"ref":1621}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1791,"element":{"ref":1793},"startPos":122,"endPos":132,"fileName":"src/app/core/layout/header.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1793,"isStub":true,"sourceAnchor":{"ref":1791},"comments":[],"incomingImports":[{"ref":1794}],"name":"RouterLink","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1794,"importingEntity":{"ref":339},"importedEntity":{"ref":1793}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1795,"element":{"ref":1797},"startPos":134,"endPos":150,"fileName":"src/app/core/layout/header.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1797,"isStub":true,"sourceAnchor":{"ref":1795},"comments":[],"incomingImports":[{"ref":1798}],"name":"RouterLinkActive","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1798,"importingEntity":{"ref":339},"importedEntity":{"ref":1797}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1799,"element":{"ref":1801},"startPos":186,"endPos":195,"fileName":"src/app/core/layout/header.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1801,"isStub":true,"sourceAnchor":{"ref":1799},"comments":[],"incomingImports":[{"ref":1802}],"name":"AsyncPipe","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1802,"importingEntity":{"ref":339},"importedEntity":{"ref":1801}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1803,"element":{"ref":1805},"startPos":197,"endPos":201,"fileName":"src/app/core/layout/header.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1805,"isStub":true,"sourceAnchor":{"ref":1803},"comments":[],"incomingImports":[{"ref":1806}],"name":"NgIf","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1806,"importingEntity":{"ref":339},"importedEntity":{"ref":1805}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1807,"element":{"ref":1808},"startPos":237,"endPos":261,"fileName":"src/app/core/layout/header.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1808,"sourceAnchor":{"ref":1807},"comments":[],"incomingImports":[{"ref":1809},{"ref":2396},{"ref":2509}],"name":"IfAuthenticatedDirective","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1809,"importingEntity":{"ref":339},"importedEntity":{"ref":1808}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1810,"element":{"ref":1812},"startPos":10,"endPos":16,"fileName":"src/app/features/profile/profile.routes.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1812,"isStub":true,"sourceAnchor":{"ref":1810},"comments":[],"incomingImports":[{"ref":1813}],"name":"Routes","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1813,"importingEntity":{"ref":371},"importedEntity":{"ref":1812}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1814,"element":{"ref":1815},"startPos":52,"endPos":68,"fileName":"src/app/features/profile/profile.routes.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1815,"sourceAnchor":{"ref":1814},"comments":[],"incomingImports":[{"ref":1816}],"name":"ProfileComponent","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1816,"importingEntity":{"ref":371},"importedEntity":{"ref":1815}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1817,"element":{"ref":1819},"startPos":10,"endPos":19,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1819,"isStub":true,"sourceAnchor":{"ref":1817},"comments":[],"incomingImports":[{"ref":1820}],"name":"Component","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1820,"importingEntity":{"ref":387},"importedEntity":{"ref":1819}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1821,"element":{"ref":1823},"startPos":21,"endPos":31,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1823,"isStub":true,"sourceAnchor":{"ref":1821},"comments":[],"incomingImports":[{"ref":1824}],"name":"DestroyRef","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1824,"importingEntity":{"ref":387},"importedEntity":{"ref":1823}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1825,"element":{"ref":1827},"startPos":33,"endPos":39,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1827,"isStub":true,"sourceAnchor":{"ref":1825},"comments":[],"incomingImports":[{"ref":1828}],"name":"inject","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1828,"importingEntity":{"ref":387},"importedEntity":{"ref":1827}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1829,"element":{"ref":1831},"startPos":41,"endPos":47,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1831,"isStub":true,"sourceAnchor":{"ref":1829},"comments":[],"incomingImports":[{"ref":1832}],"name":"OnInit","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1832,"importingEntity":{"ref":387},"importedEntity":{"ref":1831}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1833,"element":{"ref":1835},"startPos":83,"endPos":94,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1835,"isStub":true,"sourceAnchor":{"ref":1833},"comments":[],"incomingImports":[{"ref":1836}],"name":"FormControl","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1836,"importingEntity":{"ref":387},"importedEntity":{"ref":1835}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1837,"element":{"ref":1839},"startPos":98,"endPos":107,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1839,"isStub":true,"sourceAnchor":{"ref":1837},"comments":[],"incomingImports":[{"ref":1840}],"name":"FormGroup","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1840,"importingEntity":{"ref":387},"importedEntity":{"ref":1839}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1841,"element":{"ref":1843},"startPos":111,"endPos":130,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1843,"isStub":true,"sourceAnchor":{"ref":1841},"comments":[],"incomingImports":[{"ref":1844}],"name":"ReactiveFormsModule","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1844,"importingEntity":{"ref":387},"importedEntity":{"ref":1843}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1845,"element":{"ref":1847},"startPos":134,"endPos":144,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1847,"isStub":true,"sourceAnchor":{"ref":1845},"comments":[],"incomingImports":[{"ref":1848}],"name":"Validators","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1848,"importingEntity":{"ref":387},"importedEntity":{"ref":1847}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1849,"element":{"ref":1851},"startPos":180,"endPos":186,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1851,"isStub":true,"sourceAnchor":{"ref":1849},"comments":[],"incomingImports":[{"ref":1852}],"name":"Router","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1852,"importingEntity":{"ref":387},"importedEntity":{"ref":1851}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1853,"element":{"ref":1854},"startPos":222,"endPos":226,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1854,"sourceAnchor":{"ref":1853},"comments":[],"incomingImports":[{"ref":1855},{"ref":1937},{"ref":1963},{"ref":2352}],"name":"User","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1855,"importingEntity":{"ref":387},"importedEntity":{"ref":1854}},{"FM3":"FamixTypeScript.ImportClause","id":1856,"importingEntity":{"ref":387},"importedEntity":{"ref":1621}},{"FM3":"FamixTypeScript.ImportClause","id":1857,"importingEntity":{"ref":387},"importedEntity":{"ref":1698}},{"FM3":"FamixTypeScript.ImportClause","id":1858,"importingEntity":{"ref":387},"importedEntity":{"ref":1701}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1859,"element":{"ref":1861},"startPos":484,"endPos":502,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1861,"isStub":true,"sourceAnchor":{"ref":1859},"comments":[],"incomingImports":[{"ref":1862}],"name":"takeUntilDestroyed","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1862,"importingEntity":{"ref":387},"importedEntity":{"ref":1861}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1863,"element":{"ref":1865},"startPos":10,"endPos":19,"fileName":"src/app/shared/components/list-errors.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1865,"isStub":true,"sourceAnchor":{"ref":1863},"comments":[],"incomingImports":[{"ref":1866}],"name":"Component","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1866,"importingEntity":{"ref":455},"importedEntity":{"ref":1865}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1867,"element":{"ref":1869},"startPos":21,"endPos":26,"fileName":"src/app/shared/components/list-errors.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1869,"isStub":true,"sourceAnchor":{"ref":1867},"comments":[],"incomingImports":[{"ref":1870}],"name":"Input","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1870,"importingEntity":{"ref":455},"importedEntity":{"ref":1869}},{"FM3":"FamixTypeScript.ImportClause","id":1871,"importingEntity":{"ref":455},"importedEntity":{"ref":1701}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1872,"element":{"ref":1874},"startPos":117,"endPos":124,"fileName":"src/app/shared/components/list-errors.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1874,"isStub":true,"sourceAnchor":{"ref":1872},"comments":[],"incomingImports":[{"ref":1875}],"name":"NgForOf","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1875,"importingEntity":{"ref":455},"importedEntity":{"ref":1874}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1876,"element":{"ref":1878},"startPos":126,"endPos":130,"fileName":"src/app/shared/components/list-errors.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1878,"isStub":true,"sourceAnchor":{"ref":1876},"comments":[],"incomingImports":[{"ref":1879}],"name":"NgIf","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1879,"importingEntity":{"ref":455},"importedEntity":{"ref":1878}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1880,"element":{"ref":1882},"startPos":10,"endPos":16,"fileName":"src/app/shared/pipes/markdown.pipe.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1882,"isStub":true,"sourceAnchor":{"ref":1880},"comments":[],"incomingImports":[{"ref":1883}],"name":"inject","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1883,"importingEntity":{"ref":479},"importedEntity":{"ref":1882}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1884,"element":{"ref":1886},"startPos":18,"endPos":22,"fileName":"src/app/shared/pipes/markdown.pipe.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1886,"isStub":true,"sourceAnchor":{"ref":1884},"comments":[],"incomingImports":[{"ref":1887}],"name":"Pipe","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1887,"importingEntity":{"ref":479},"importedEntity":{"ref":1886}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1888,"element":{"ref":1890},"startPos":24,"endPos":37,"fileName":"src/app/shared/pipes/markdown.pipe.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1890,"isStub":true,"sourceAnchor":{"ref":1888},"comments":[],"incomingImports":[{"ref":1891}],"name":"PipeTransform","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1891,"importingEntity":{"ref":479},"importedEntity":{"ref":1890}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1892,"element":{"ref":1894},"startPos":39,"endPos":54,"fileName":"src/app/shared/pipes/markdown.pipe.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1894,"isStub":true,"sourceAnchor":{"ref":1892},"comments":[],"incomingImports":[{"ref":1895}],"name":"SecurityContext","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1895,"importingEntity":{"ref":479},"importedEntity":{"ref":1894}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1896,"element":{"ref":1898},"startPos":88,"endPos":100,"fileName":"src/app/shared/pipes/markdown.pipe.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1898,"isStub":true,"sourceAnchor":{"ref":1896},"comments":[],"incomingImports":[{"ref":1899}],"name":"DomSanitizer","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1899,"importingEntity":{"ref":479},"importedEntity":{"ref":1898}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1900,"element":{"ref":1902},"startPos":10,"endPos":20,"fileName":"src/app/core/auth/services/jwt.service.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1902,"isStub":true,"sourceAnchor":{"ref":1900},"comments":[],"incomingImports":[{"ref":1903}],"name":"Injectable","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1903,"importingEntity":{"ref":495},"importedEntity":{"ref":1902}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1904,"element":{"ref":1906},"startPos":10,"endPos":20,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1906,"isStub":true,"sourceAnchor":{"ref":1904},"comments":[],"incomingImports":[{"ref":1907}],"name":"Injectable","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1907,"importingEntity":{"ref":509},"importedEntity":{"ref":1906}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1908,"element":{"ref":1910},"startPos":54,"endPos":64,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1910,"isStub":true,"sourceAnchor":{"ref":1908},"comments":[],"incomingImports":[{"ref":1911}],"name":"Observable","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1911,"importingEntity":{"ref":509},"importedEntity":{"ref":1910}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1912,"element":{"ref":1914},"startPos":66,"endPos":81,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1914,"isStub":true,"sourceAnchor":{"ref":1912},"comments":[],"incomingImports":[{"ref":1915}],"name":"BehaviorSubject","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1915,"importingEntity":{"ref":509},"importedEntity":{"ref":1914}},{"FM3":"FamixTypeScript.ImportClause","id":1916,"importingEntity":{"ref":509},"importedEntity":{"ref":1618}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1917,"element":{"ref":1919},"startPos":151,"endPos":154,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1919,"isStub":true,"sourceAnchor":{"ref":1917},"comments":[],"incomingImports":[{"ref":1920}],"name":"map","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1920,"importingEntity":{"ref":509},"importedEntity":{"ref":1919}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1921,"element":{"ref":1923},"startPos":156,"endPos":176,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1923,"isStub":true,"sourceAnchor":{"ref":1921},"comments":[],"incomingImports":[{"ref":1924}],"name":"distinctUntilChanged","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1924,"importingEntity":{"ref":509},"importedEntity":{"ref":1923}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1925,"element":{"ref":1927},"startPos":178,"endPos":181,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1927,"isStub":true,"sourceAnchor":{"ref":1925},"comments":[],"incomingImports":[{"ref":1928}],"name":"tap","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1928,"importingEntity":{"ref":509},"importedEntity":{"ref":1927}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1929,"element":{"ref":1931},"startPos":183,"endPos":194,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1931,"isStub":true,"sourceAnchor":{"ref":1929},"comments":[],"incomingImports":[{"ref":1932}],"name":"shareReplay","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1932,"importingEntity":{"ref":509},"importedEntity":{"ref":1931}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1933,"element":{"ref":1935},"startPos":229,"endPos":239,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1935,"isStub":true,"sourceAnchor":{"ref":1933},"comments":[],"incomingImports":[{"ref":1936}],"name":"HttpClient","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1936,"importingEntity":{"ref":509},"importedEntity":{"ref":1935}},{"FM3":"FamixTypeScript.ImportClause","id":1937,"importingEntity":{"ref":509},"importedEntity":{"ref":1854}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1938,"element":{"ref":1940},"startPos":318,"endPos":324,"fileName":"src/app/core/auth/services/user.service.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1940,"isStub":true,"sourceAnchor":{"ref":1938},"comments":[],"incomingImports":[{"ref":1941}],"name":"Router","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1941,"importingEntity":{"ref":509},"importedEntity":{"ref":1940}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1942,"element":{"ref":1944},"startPos":10,"endPos":19,"fileName":"src/app/features/article/components/article-comment.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1944,"isStub":true,"sourceAnchor":{"ref":1942},"comments":[],"incomingImports":[{"ref":1945}],"name":"Component","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1945,"importingEntity":{"ref":613},"importedEntity":{"ref":1944}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1946,"element":{"ref":1948},"startPos":21,"endPos":33,"fileName":"src/app/features/article/components/article-comment.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1948,"isStub":true,"sourceAnchor":{"ref":1946},"comments":[],"incomingImports":[{"ref":1949}],"name":"EventEmitter","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1949,"importingEntity":{"ref":613},"importedEntity":{"ref":1948}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1950,"element":{"ref":1952},"startPos":35,"endPos":40,"fileName":"src/app/features/article/components/article-comment.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1952,"isStub":true,"sourceAnchor":{"ref":1950},"comments":[],"incomingImports":[{"ref":1953}],"name":"Input","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1953,"importingEntity":{"ref":613},"importedEntity":{"ref":1952}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1954,"element":{"ref":1956},"startPos":42,"endPos":48,"fileName":"src/app/features/article/components/article-comment.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1956,"isStub":true,"sourceAnchor":{"ref":1954},"comments":[],"incomingImports":[{"ref":1957}],"name":"Output","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1957,"importingEntity":{"ref":613},"importedEntity":{"ref":1956}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1958,"element":{"ref":1960},"startPos":50,"endPos":56,"fileName":"src/app/features/article/components/article-comment.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1960,"isStub":true,"sourceAnchor":{"ref":1958},"comments":[],"incomingImports":[{"ref":1961}],"name":"inject","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1961,"importingEntity":{"ref":613},"importedEntity":{"ref":1960}},{"FM3":"FamixTypeScript.ImportClause","id":1962,"importingEntity":{"ref":613},"importedEntity":{"ref":1621}},{"FM3":"FamixTypeScript.ImportClause","id":1963,"importingEntity":{"ref":613},"importedEntity":{"ref":1854}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1964,"element":{"ref":1966},"startPos":216,"endPos":226,"fileName":"src/app/features/article/components/article-comment.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1966,"isStub":true,"sourceAnchor":{"ref":1964},"comments":[],"incomingImports":[{"ref":1967}],"name":"RouterLink","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1967,"importingEntity":{"ref":613},"importedEntity":{"ref":1966}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1968,"element":{"ref":1970},"startPos":262,"endPos":265,"fileName":"src/app/features/article/components/article-comment.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1970,"isStub":true,"sourceAnchor":{"ref":1968},"comments":[],"incomingImports":[{"ref":1971}],"name":"map","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1971,"importingEntity":{"ref":613},"importedEntity":{"ref":1970}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1972,"element":{"ref":1973},"startPos":300,"endPos":307,"fileName":"src/app/features/article/components/article-comment.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1973,"sourceAnchor":{"ref":1972},"comments":[],"incomingImports":[{"ref":1974},{"ref":2167},{"ref":2395}],"name":"Comment","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1974,"importingEntity":{"ref":613},"importedEntity":{"ref":1973}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1975,"element":{"ref":1977},"startPos":351,"endPos":360,"fileName":"src/app/features/article/components/article-comment.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1977,"isStub":true,"sourceAnchor":{"ref":1975},"comments":[],"incomingImports":[{"ref":1978}],"name":"AsyncPipe","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1978,"importingEntity":{"ref":613},"importedEntity":{"ref":1977}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1979,"element":{"ref":1981},"startPos":362,"endPos":370,"fileName":"src/app/features/article/components/article-comment.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1981,"isStub":true,"sourceAnchor":{"ref":1979},"comments":[],"incomingImports":[{"ref":1982}],"name":"DatePipe","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1982,"importingEntity":{"ref":613},"importedEntity":{"ref":1981}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1983,"element":{"ref":1985},"startPos":372,"endPos":376,"fileName":"src/app/features/article/components/article-comment.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1985,"isStub":true,"sourceAnchor":{"ref":1983},"comments":[],"incomingImports":[{"ref":1986}],"name":"NgIf","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1986,"importingEntity":{"ref":613},"importedEntity":{"ref":1985}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1987,"element":{"ref":1989},"startPos":10,"endPos":19,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1989,"isStub":true,"sourceAnchor":{"ref":1987},"comments":[],"incomingImports":[{"ref":1990}],"name":"Component","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1990,"importingEntity":{"ref":637},"importedEntity":{"ref":1989}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1991,"element":{"ref":1993},"startPos":21,"endPos":31,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1993,"isStub":true,"sourceAnchor":{"ref":1991},"comments":[],"incomingImports":[{"ref":1994}],"name":"DestroyRef","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1994,"importingEntity":{"ref":637},"importedEntity":{"ref":1993}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1995,"element":{"ref":1997},"startPos":33,"endPos":39,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":1997,"isStub":true,"sourceAnchor":{"ref":1995},"comments":[],"incomingImports":[{"ref":1998}],"name":"inject","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":1998,"importingEntity":{"ref":637},"importedEntity":{"ref":1997}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":1999,"element":{"ref":2001},"startPos":41,"endPos":46,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2001,"isStub":true,"sourceAnchor":{"ref":1999},"comments":[],"incomingImports":[{"ref":2002}],"name":"Input","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2002,"importingEntity":{"ref":637},"importedEntity":{"ref":2001}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2003,"element":{"ref":2004},"startPos":80,"endPos":95,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2004,"sourceAnchor":{"ref":2003},"comments":[],"incomingImports":[{"ref":2005},{"ref":2118},{"ref":2354},{"ref":2456}],"name":"ArticlesService","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2005,"importingEntity":{"ref":637},"importedEntity":{"ref":2004}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2006,"element":{"ref":2007},"startPos":144,"endPos":161,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2007,"sourceAnchor":{"ref":2006},"comments":[],"incomingImports":[{"ref":2008},{"ref":2149},{"ref":2258},{"ref":2286},{"ref":2486}],"name":"ArticleListConfig","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2008,"importingEntity":{"ref":637},"importedEntity":{"ref":2007}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2009,"element":{"ref":2010},"startPos":217,"endPos":224,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2010,"sourceAnchor":{"ref":2009},"comments":[],"incomingImports":[{"ref":2011},{"ref":2046},{"ref":2063},{"ref":2120},{"ref":2150},{"ref":2353}],"name":"Article","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2011,"importingEntity":{"ref":637},"importedEntity":{"ref":2010}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2012,"element":{"ref":2013},"startPos":268,"endPos":291,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2013,"sourceAnchor":{"ref":2012},"comments":[],"incomingImports":[{"ref":2014}],"name":"ArticlePreviewComponent","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2014,"importingEntity":{"ref":637},"importedEntity":{"ref":2013}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2015,"element":{"ref":2017},"startPos":339,"endPos":346,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2017,"isStub":true,"sourceAnchor":{"ref":2015},"comments":[],"incomingImports":[{"ref":2018}],"name":"NgClass","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2018,"importingEntity":{"ref":637},"importedEntity":{"ref":2017}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2019,"element":{"ref":2021},"startPos":348,"endPos":355,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2021,"isStub":true,"sourceAnchor":{"ref":2019},"comments":[],"incomingImports":[{"ref":2022}],"name":"NgForOf","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2022,"importingEntity":{"ref":637},"importedEntity":{"ref":2021}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2023,"element":{"ref":2025},"startPos":357,"endPos":361,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2025,"isStub":true,"sourceAnchor":{"ref":2023},"comments":[],"incomingImports":[{"ref":2026}],"name":"NgIf","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2026,"importingEntity":{"ref":637},"importedEntity":{"ref":2025}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2027,"element":{"ref":2028},"startPos":397,"endPos":409,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2028,"sourceAnchor":{"ref":2027},"comments":[],"incomingImports":[{"ref":2029}],"name":"LoadingState","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2029,"importingEntity":{"ref":637},"importedEntity":{"ref":2028}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2030,"element":{"ref":2032},"startPos":470,"endPos":488,"fileName":"src/app/features/article/components/article-list.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2032,"isStub":true,"sourceAnchor":{"ref":2030},"comments":[],"incomingImports":[{"ref":2033}],"name":"takeUntilDestroyed","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2033,"importingEntity":{"ref":637},"importedEntity":{"ref":2032}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2034,"element":{"ref":2036},"startPos":10,"endPos":33,"fileName":"src/app/features/article/components/article-meta.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2036,"isStub":true,"sourceAnchor":{"ref":2034},"comments":[],"incomingImports":[{"ref":2037}],"name":"ChangeDetectionStrategy","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2037,"importingEntity":{"ref":725},"importedEntity":{"ref":2036}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2038,"element":{"ref":2040},"startPos":35,"endPos":44,"fileName":"src/app/features/article/components/article-meta.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2040,"isStub":true,"sourceAnchor":{"ref":2038},"comments":[],"incomingImports":[{"ref":2041}],"name":"Component","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2041,"importingEntity":{"ref":725},"importedEntity":{"ref":2040}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2042,"element":{"ref":2044},"startPos":46,"endPos":51,"fileName":"src/app/features/article/components/article-meta.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2044,"isStub":true,"sourceAnchor":{"ref":2042},"comments":[],"incomingImports":[{"ref":2045}],"name":"Input","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2045,"importingEntity":{"ref":725},"importedEntity":{"ref":2044}},{"FM3":"FamixTypeScript.ImportClause","id":2046,"importingEntity":{"ref":725},"importedEntity":{"ref":2010}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2047,"element":{"ref":2049},"startPos":136,"endPos":146,"fileName":"src/app/features/article/components/article-meta.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2049,"isStub":true,"sourceAnchor":{"ref":2047},"comments":[],"incomingImports":[{"ref":2050}],"name":"RouterLink","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2050,"importingEntity":{"ref":725},"importedEntity":{"ref":2049}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2051,"element":{"ref":2053},"startPos":182,"endPos":190,"fileName":"src/app/features/article/components/article-meta.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2053,"isStub":true,"sourceAnchor":{"ref":2051},"comments":[],"incomingImports":[{"ref":2054}],"name":"DatePipe","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2054,"importingEntity":{"ref":725},"importedEntity":{"ref":2053}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2055,"element":{"ref":2057},"startPos":10,"endPos":19,"fileName":"src/app/features/article/components/article-preview.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2057,"isStub":true,"sourceAnchor":{"ref":2055},"comments":[],"incomingImports":[{"ref":2058}],"name":"Component","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2058,"importingEntity":{"ref":737},"importedEntity":{"ref":2057}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2059,"element":{"ref":2061},"startPos":21,"endPos":26,"fileName":"src/app/features/article/components/article-preview.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2061,"isStub":true,"sourceAnchor":{"ref":2059},"comments":[],"incomingImports":[{"ref":2062}],"name":"Input","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2062,"importingEntity":{"ref":737},"importedEntity":{"ref":2061}},{"FM3":"FamixTypeScript.ImportClause","id":2063,"importingEntity":{"ref":737},"importedEntity":{"ref":2010}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2064,"element":{"ref":2065},"startPos":111,"endPos":131,"fileName":"src/app/features/article/components/article-preview.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2065,"sourceAnchor":{"ref":2064},"comments":[],"incomingImports":[{"ref":2066},{"ref":2359}],"name":"ArticleMetaComponent","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2066,"importingEntity":{"ref":737},"importedEntity":{"ref":2065}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2067,"element":{"ref":2069},"startPos":176,"endPos":186,"fileName":"src/app/features/article/components/article-preview.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2069,"isStub":true,"sourceAnchor":{"ref":2067},"comments":[],"incomingImports":[{"ref":2070}],"name":"RouterLink","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2070,"importingEntity":{"ref":737},"importedEntity":{"ref":2069}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2071,"element":{"ref":2073},"startPos":222,"endPos":229,"fileName":"src/app/features/article/components/article-preview.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2073,"isStub":true,"sourceAnchor":{"ref":2071},"comments":[],"incomingImports":[{"ref":2074}],"name":"NgForOf","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2074,"importingEntity":{"ref":737},"importedEntity":{"ref":2073}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2075,"element":{"ref":2076},"startPos":265,"endPos":288,"fileName":"src/app/features/article/components/article-preview.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2076,"sourceAnchor":{"ref":2075},"comments":[],"incomingImports":[{"ref":2077},{"ref":2403}],"name":"FavoriteButtonComponent","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2077,"importingEntity":{"ref":737},"importedEntity":{"ref":2076}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2078,"element":{"ref":2080},"startPos":12,"endPos":21,"fileName":"src/app/features/article/components/favorite-button.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2080,"isStub":true,"sourceAnchor":{"ref":2078},"comments":[],"incomingImports":[{"ref":2081}],"name":"Component","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2081,"importingEntity":{"ref":751},"importedEntity":{"ref":2080}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2082,"element":{"ref":2084},"startPos":25,"endPos":35,"fileName":"src/app/features/article/components/favorite-button.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2084,"isStub":true,"sourceAnchor":{"ref":2082},"comments":[],"incomingImports":[{"ref":2085}],"name":"DestroyRef","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2085,"importingEntity":{"ref":751},"importedEntity":{"ref":2084}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2086,"element":{"ref":2088},"startPos":39,"endPos":51,"fileName":"src/app/features/article/components/favorite-button.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2088,"isStub":true,"sourceAnchor":{"ref":2086},"comments":[],"incomingImports":[{"ref":2089}],"name":"EventEmitter","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2089,"importingEntity":{"ref":751},"importedEntity":{"ref":2088}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2090,"element":{"ref":2092},"startPos":55,"endPos":61,"fileName":"src/app/features/article/components/favorite-button.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2092,"isStub":true,"sourceAnchor":{"ref":2090},"comments":[],"incomingImports":[{"ref":2093}],"name":"inject","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2093,"importingEntity":{"ref":751},"importedEntity":{"ref":2092}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2094,"element":{"ref":2096},"startPos":65,"endPos":70,"fileName":"src/app/features/article/components/favorite-button.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2096,"isStub":true,"sourceAnchor":{"ref":2094},"comments":[],"incomingImports":[{"ref":2097}],"name":"Input","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2097,"importingEntity":{"ref":751},"importedEntity":{"ref":2096}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2098,"element":{"ref":2100},"startPos":74,"endPos":80,"fileName":"src/app/features/article/components/favorite-button.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2100,"isStub":true,"sourceAnchor":{"ref":2098},"comments":[],"incomingImports":[{"ref":2101}],"name":"Output","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2101,"importingEntity":{"ref":751},"importedEntity":{"ref":2100}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2102,"element":{"ref":2104},"startPos":115,"endPos":121,"fileName":"src/app/features/article/components/favorite-button.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2104,"isStub":true,"sourceAnchor":{"ref":2102},"comments":[],"incomingImports":[{"ref":2105}],"name":"Router","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2105,"importingEntity":{"ref":751},"importedEntity":{"ref":2104}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2106,"element":{"ref":2108},"startPos":157,"endPos":162,"fileName":"src/app/features/article/components/favorite-button.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2108,"isStub":true,"sourceAnchor":{"ref":2106},"comments":[],"incomingImports":[{"ref":2109}],"name":"EMPTY","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2109,"importingEntity":{"ref":751},"importedEntity":{"ref":2108}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2110,"element":{"ref":2112},"startPos":164,"endPos":173,"fileName":"src/app/features/article/components/favorite-button.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2112,"isStub":true,"sourceAnchor":{"ref":2110},"comments":[],"incomingImports":[{"ref":2113}],"name":"switchMap","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2113,"importingEntity":{"ref":751},"importedEntity":{"ref":2112}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2114,"element":{"ref":2116},"startPos":198,"endPos":205,"fileName":"src/app/features/article/components/favorite-button.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2116,"isStub":true,"sourceAnchor":{"ref":2114},"comments":[],"incomingImports":[{"ref":2117}],"name":"NgClass","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2117,"importingEntity":{"ref":751},"importedEntity":{"ref":2116}},{"FM3":"FamixTypeScript.ImportClause","id":2118,"importingEntity":{"ref":751},"importedEntity":{"ref":2004}},{"FM3":"FamixTypeScript.ImportClause","id":2119,"importingEntity":{"ref":751},"importedEntity":{"ref":1621}},{"FM3":"FamixTypeScript.ImportClause","id":2120,"importingEntity":{"ref":751},"importedEntity":{"ref":2010}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2121,"element":{"ref":2123},"startPos":428,"endPos":446,"fileName":"src/app/features/article/components/favorite-button.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2123,"isStub":true,"sourceAnchor":{"ref":2121},"comments":[],"incomingImports":[{"ref":2124}],"name":"takeUntilDestroyed","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2124,"importingEntity":{"ref":751},"importedEntity":{"ref":2123}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2125,"element":{"ref":2126},"startPos":10,"endPos":17,"fileName":"src/app/features/article/models/article.model.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2126,"sourceAnchor":{"ref":2125},"comments":[],"incomingImports":[{"ref":2127},{"ref":2128},{"ref":2224},{"ref":2257},{"ref":2285},{"ref":2307},{"ref":2398},{"ref":2571}],"name":"Profile","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2127,"importingEntity":{"ref":813},"importedEntity":{"ref":2126}},{"FM3":"FamixTypeScript.ImportClause","id":2128,"importingEntity":{"ref":839},"importedEntity":{"ref":2126}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2129,"element":{"ref":2131},"startPos":10,"endPos":20,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2131,"isStub":true,"sourceAnchor":{"ref":2129},"comments":[],"incomingImports":[{"ref":2132}],"name":"Injectable","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2132,"importingEntity":{"ref":851},"importedEntity":{"ref":2131}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2133,"element":{"ref":2135},"startPos":54,"endPos":64,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2135,"isStub":true,"sourceAnchor":{"ref":2133},"comments":[],"incomingImports":[{"ref":2136}],"name":"HttpClient","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2136,"importingEntity":{"ref":851},"importedEntity":{"ref":2135}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2137,"element":{"ref":2139},"startPos":66,"endPos":76,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2139,"isStub":true,"sourceAnchor":{"ref":2137},"comments":[],"incomingImports":[{"ref":2140}],"name":"HttpParams","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2140,"importingEntity":{"ref":851},"importedEntity":{"ref":2139}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2141,"element":{"ref":2143},"startPos":117,"endPos":127,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2143,"isStub":true,"sourceAnchor":{"ref":2141},"comments":[],"incomingImports":[{"ref":2144}],"name":"Observable","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2144,"importingEntity":{"ref":851},"importedEntity":{"ref":2143}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2145,"element":{"ref":2147},"startPos":152,"endPos":155,"fileName":"src/app/features/article/services/articles.service.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2147,"isStub":true,"sourceAnchor":{"ref":2145},"comments":[],"incomingImports":[{"ref":2148}],"name":"map","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2148,"importingEntity":{"ref":851},"importedEntity":{"ref":2147}},{"FM3":"FamixTypeScript.ImportClause","id":2149,"importingEntity":{"ref":851},"importedEntity":{"ref":2007}},{"FM3":"FamixTypeScript.ImportClause","id":2150,"importingEntity":{"ref":851},"importedEntity":{"ref":2010}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2151,"element":{"ref":2153},"startPos":10,"endPos":20,"fileName":"src/app/features/article/services/comments.service.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2153,"isStub":true,"sourceAnchor":{"ref":2151},"comments":[],"incomingImports":[{"ref":2154}],"name":"Injectable","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2154,"importingEntity":{"ref":945},"importedEntity":{"ref":2153}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2155,"element":{"ref":2157},"startPos":54,"endPos":64,"fileName":"src/app/features/article/services/comments.service.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2157,"isStub":true,"sourceAnchor":{"ref":2155},"comments":[],"incomingImports":[{"ref":2158}],"name":"Observable","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2158,"importingEntity":{"ref":945},"importedEntity":{"ref":2157}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2159,"element":{"ref":2161},"startPos":89,"endPos":92,"fileName":"src/app/features/article/services/comments.service.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2161,"isStub":true,"sourceAnchor":{"ref":2159},"comments":[],"incomingImports":[{"ref":2162}],"name":"map","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2162,"importingEntity":{"ref":945},"importedEntity":{"ref":2161}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2163,"element":{"ref":2165},"startPos":127,"endPos":137,"fileName":"src/app/features/article/services/comments.service.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2165,"isStub":true,"sourceAnchor":{"ref":2163},"comments":[],"incomingImports":[{"ref":2166}],"name":"HttpClient","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2166,"importingEntity":{"ref":945},"importedEntity":{"ref":2165}},{"FM3":"FamixTypeScript.ImportClause","id":2167,"importingEntity":{"ref":945},"importedEntity":{"ref":1973}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2168,"element":{"ref":2170},"startPos":10,"endPos":20,"fileName":"src/app/features/article/services/tags.service.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2170,"isStub":true,"sourceAnchor":{"ref":2168},"comments":[],"incomingImports":[{"ref":2171}],"name":"Injectable","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2171,"importingEntity":{"ref":997},"importedEntity":{"ref":2170}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2172,"element":{"ref":2174},"startPos":54,"endPos":64,"fileName":"src/app/features/article/services/tags.service.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2174,"isStub":true,"sourceAnchor":{"ref":2172},"comments":[],"incomingImports":[{"ref":2175}],"name":"Observable","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2175,"importingEntity":{"ref":997},"importedEntity":{"ref":2174}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2176,"element":{"ref":2178},"startPos":89,"endPos":92,"fileName":"src/app/features/article/services/tags.service.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2178,"isStub":true,"sourceAnchor":{"ref":2176},"comments":[],"incomingImports":[{"ref":2179}],"name":"map","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2179,"importingEntity":{"ref":997},"importedEntity":{"ref":2178}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2180,"element":{"ref":2182},"startPos":127,"endPos":137,"fileName":"src/app/features/article/services/tags.service.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2182,"isStub":true,"sourceAnchor":{"ref":2180},"comments":[],"incomingImports":[{"ref":2183}],"name":"HttpClient","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2183,"importingEntity":{"ref":997},"importedEntity":{"ref":2182}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2184,"element":{"ref":2186},"startPos":12,"endPos":21,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2186,"isStub":true,"sourceAnchor":{"ref":2184},"comments":[],"incomingImports":[{"ref":2187}],"name":"Component","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2187,"importingEntity":{"ref":1023},"importedEntity":{"ref":2186}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2188,"element":{"ref":2190},"startPos":25,"endPos":35,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2190,"isStub":true,"sourceAnchor":{"ref":2188},"comments":[],"incomingImports":[{"ref":2191}],"name":"DestroyRef","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2191,"importingEntity":{"ref":1023},"importedEntity":{"ref":2190}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2192,"element":{"ref":2194},"startPos":39,"endPos":51,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2194,"isStub":true,"sourceAnchor":{"ref":2192},"comments":[],"incomingImports":[{"ref":2195}],"name":"EventEmitter","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2195,"importingEntity":{"ref":1023},"importedEntity":{"ref":2194}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2196,"element":{"ref":2198},"startPos":55,"endPos":61,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2198,"isStub":true,"sourceAnchor":{"ref":2196},"comments":[],"incomingImports":[{"ref":2199}],"name":"inject","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2199,"importingEntity":{"ref":1023},"importedEntity":{"ref":2198}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2200,"element":{"ref":2202},"startPos":65,"endPos":70,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2202,"isStub":true,"sourceAnchor":{"ref":2200},"comments":[],"incomingImports":[{"ref":2203}],"name":"Input","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2203,"importingEntity":{"ref":1023},"importedEntity":{"ref":2202}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2204,"element":{"ref":2206},"startPos":74,"endPos":80,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2206,"isStub":true,"sourceAnchor":{"ref":2204},"comments":[],"incomingImports":[{"ref":2207}],"name":"Output","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2207,"importingEntity":{"ref":1023},"importedEntity":{"ref":2206}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2208,"element":{"ref":2210},"startPos":115,"endPos":121,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2210,"isStub":true,"sourceAnchor":{"ref":2208},"comments":[],"incomingImports":[{"ref":2211}],"name":"Router","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2211,"importingEntity":{"ref":1023},"importedEntity":{"ref":2210}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2212,"element":{"ref":2214},"startPos":157,"endPos":166,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2214,"isStub":true,"sourceAnchor":{"ref":2212},"comments":[],"incomingImports":[{"ref":2215}],"name":"switchMap","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2215,"importingEntity":{"ref":1023},"importedEntity":{"ref":2214}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2216,"element":{"ref":2218},"startPos":201,"endPos":206,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2218,"isStub":true,"sourceAnchor":{"ref":2216},"comments":[],"incomingImports":[{"ref":2219}],"name":"EMPTY","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2219,"importingEntity":{"ref":1023},"importedEntity":{"ref":2218}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2220,"element":{"ref":2221},"startPos":231,"endPos":245,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2221,"sourceAnchor":{"ref":2220},"comments":[],"incomingImports":[{"ref":2222},{"ref":2256},{"ref":2284},{"ref":2572}],"name":"ProfileService","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2222,"importingEntity":{"ref":1023},"importedEntity":{"ref":2221}},{"FM3":"FamixTypeScript.ImportClause","id":2223,"importingEntity":{"ref":1023},"importedEntity":{"ref":1621}},{"FM3":"FamixTypeScript.ImportClause","id":2224,"importingEntity":{"ref":1023},"importedEntity":{"ref":2126}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2225,"element":{"ref":2227},"startPos":416,"endPos":423,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2227,"isStub":true,"sourceAnchor":{"ref":2225},"comments":[],"incomingImports":[{"ref":2228}],"name":"NgClass","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2228,"importingEntity":{"ref":1023},"importedEntity":{"ref":2227}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2229,"element":{"ref":2231},"startPos":459,"endPos":477,"fileName":"src/app/features/profile/components/follow-button.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2231,"isStub":true,"sourceAnchor":{"ref":2229},"comments":[],"incomingImports":[{"ref":2232}],"name":"takeUntilDestroyed","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2232,"importingEntity":{"ref":1023},"importedEntity":{"ref":2231}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2233,"element":{"ref":2235},"startPos":10,"endPos":19,"fileName":"src/app/features/profile/components/profile-articles.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2235,"isStub":true,"sourceAnchor":{"ref":2233},"comments":[],"incomingImports":[{"ref":2236}],"name":"Component","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2236,"importingEntity":{"ref":1081},"importedEntity":{"ref":2235}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2237,"element":{"ref":2239},"startPos":21,"endPos":31,"fileName":"src/app/features/profile/components/profile-articles.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2239,"isStub":true,"sourceAnchor":{"ref":2237},"comments":[],"incomingImports":[{"ref":2240}],"name":"DestroyRef","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2240,"importingEntity":{"ref":1081},"importedEntity":{"ref":2239}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2241,"element":{"ref":2243},"startPos":33,"endPos":39,"fileName":"src/app/features/profile/components/profile-articles.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2243,"isStub":true,"sourceAnchor":{"ref":2241},"comments":[],"incomingImports":[{"ref":2244}],"name":"inject","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2244,"importingEntity":{"ref":1081},"importedEntity":{"ref":2243}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2245,"element":{"ref":2247},"startPos":41,"endPos":47,"fileName":"src/app/features/profile/components/profile-articles.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2247,"isStub":true,"sourceAnchor":{"ref":2245},"comments":[],"incomingImports":[{"ref":2248}],"name":"OnInit","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2248,"importingEntity":{"ref":1081},"importedEntity":{"ref":2247}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2249,"element":{"ref":2251},"startPos":81,"endPos":95,"fileName":"src/app/features/profile/components/profile-articles.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2251,"isStub":true,"sourceAnchor":{"ref":2249},"comments":[],"incomingImports":[{"ref":2252}],"name":"ActivatedRoute","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2252,"importingEntity":{"ref":1081},"importedEntity":{"ref":2251}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2253,"element":{"ref":2254},"startPos":131,"endPos":151,"fileName":"src/app/features/profile/components/profile-articles.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2254,"sourceAnchor":{"ref":2253},"comments":[],"incomingImports":[{"ref":2255},{"ref":2283},{"ref":2499}],"name":"ArticleListComponent","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2255,"importingEntity":{"ref":1081},"importedEntity":{"ref":2254}},{"FM3":"FamixTypeScript.ImportClause","id":2256,"importingEntity":{"ref":1081},"importedEntity":{"ref":2221}},{"FM3":"FamixTypeScript.ImportClause","id":2257,"importingEntity":{"ref":1081},"importedEntity":{"ref":2126}},{"FM3":"FamixTypeScript.ImportClause","id":2258,"importingEntity":{"ref":1081},"importedEntity":{"ref":2007}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2259,"element":{"ref":2261},"startPos":416,"endPos":434,"fileName":"src/app/features/profile/components/profile-articles.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2261,"isStub":true,"sourceAnchor":{"ref":2259},"comments":[],"incomingImports":[{"ref":2262}],"name":"takeUntilDestroyed","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2262,"importingEntity":{"ref":1081},"importedEntity":{"ref":2261}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2263,"element":{"ref":2265},"startPos":10,"endPos":19,"fileName":"src/app/features/profile/components/profile-favorites.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2265,"isStub":true,"sourceAnchor":{"ref":2263},"comments":[],"incomingImports":[{"ref":2266}],"name":"Component","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2266,"importingEntity":{"ref":1115},"importedEntity":{"ref":2265}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2267,"element":{"ref":2269},"startPos":21,"endPos":31,"fileName":"src/app/features/profile/components/profile-favorites.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2269,"isStub":true,"sourceAnchor":{"ref":2267},"comments":[],"incomingImports":[{"ref":2270}],"name":"DestroyRef","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2270,"importingEntity":{"ref":1115},"importedEntity":{"ref":2269}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2271,"element":{"ref":2273},"startPos":33,"endPos":39,"fileName":"src/app/features/profile/components/profile-favorites.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2273,"isStub":true,"sourceAnchor":{"ref":2271},"comments":[],"incomingImports":[{"ref":2274}],"name":"inject","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2274,"importingEntity":{"ref":1115},"importedEntity":{"ref":2273}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2275,"element":{"ref":2277},"startPos":41,"endPos":47,"fileName":"src/app/features/profile/components/profile-favorites.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2277,"isStub":true,"sourceAnchor":{"ref":2275},"comments":[],"incomingImports":[{"ref":2278}],"name":"OnInit","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2278,"importingEntity":{"ref":1115},"importedEntity":{"ref":2277}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2279,"element":{"ref":2281},"startPos":81,"endPos":95,"fileName":"src/app/features/profile/components/profile-favorites.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2281,"isStub":true,"sourceAnchor":{"ref":2279},"comments":[],"incomingImports":[{"ref":2282}],"name":"ActivatedRoute","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2282,"importingEntity":{"ref":1115},"importedEntity":{"ref":2281}},{"FM3":"FamixTypeScript.ImportClause","id":2283,"importingEntity":{"ref":1115},"importedEntity":{"ref":2254}},{"FM3":"FamixTypeScript.ImportClause","id":2284,"importingEntity":{"ref":1115},"importedEntity":{"ref":2221}},{"FM3":"FamixTypeScript.ImportClause","id":2285,"importingEntity":{"ref":1115},"importedEntity":{"ref":2126}},{"FM3":"FamixTypeScript.ImportClause","id":2286,"importingEntity":{"ref":1115},"importedEntity":{"ref":2007}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2287,"element":{"ref":2289},"startPos":416,"endPos":434,"fileName":"src/app/features/profile/components/profile-favorites.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2289,"isStub":true,"sourceAnchor":{"ref":2287},"comments":[],"incomingImports":[{"ref":2290}],"name":"takeUntilDestroyed","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2290,"importingEntity":{"ref":1115},"importedEntity":{"ref":2289}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2291,"element":{"ref":2293},"startPos":10,"endPos":20,"fileName":"src/app/features/profile/services/profile.service.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2293,"isStub":true,"sourceAnchor":{"ref":2291},"comments":[],"incomingImports":[{"ref":2294}],"name":"Injectable","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2294,"importingEntity":{"ref":1161},"importedEntity":{"ref":2293}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2295,"element":{"ref":2297},"startPos":54,"endPos":64,"fileName":"src/app/features/profile/services/profile.service.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2297,"isStub":true,"sourceAnchor":{"ref":2295},"comments":[],"incomingImports":[{"ref":2298}],"name":"Observable","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2298,"importingEntity":{"ref":1161},"importedEntity":{"ref":2297}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2299,"element":{"ref":2301},"startPos":89,"endPos":92,"fileName":"src/app/features/profile/services/profile.service.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2301,"isStub":true,"sourceAnchor":{"ref":2299},"comments":[],"incomingImports":[{"ref":2302}],"name":"map","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2302,"importingEntity":{"ref":1161},"importedEntity":{"ref":2301}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2303,"element":{"ref":2305},"startPos":94,"endPos":105,"fileName":"src/app/features/profile/services/profile.service.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2305,"isStub":true,"sourceAnchor":{"ref":2303},"comments":[],"incomingImports":[{"ref":2306}],"name":"shareReplay","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2306,"importingEntity":{"ref":1161},"importedEntity":{"ref":2305}},{"FM3":"FamixTypeScript.ImportClause","id":2307,"importingEntity":{"ref":1161},"importedEntity":{"ref":2126}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2308,"element":{"ref":2310},"startPos":191,"endPos":201,"fileName":"src/app/features/profile/services/profile.service.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2310,"isStub":true,"sourceAnchor":{"ref":2308},"comments":[],"incomingImports":[{"ref":2311}],"name":"HttpClient","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2311,"importingEntity":{"ref":1161},"importedEntity":{"ref":2310}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2312,"element":{"ref":2314},"startPos":10,"endPos":19,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2314,"isStub":true,"sourceAnchor":{"ref":2312},"comments":[],"incomingImports":[{"ref":2315}],"name":"Component","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2315,"importingEntity":{"ref":1213},"importedEntity":{"ref":2314}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2316,"element":{"ref":2318},"startPos":21,"endPos":31,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2318,"isStub":true,"sourceAnchor":{"ref":2316},"comments":[],"incomingImports":[{"ref":2319}],"name":"DestroyRef","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2319,"importingEntity":{"ref":1213},"importedEntity":{"ref":2318}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2320,"element":{"ref":2322},"startPos":33,"endPos":39,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2322,"isStub":true,"sourceAnchor":{"ref":2320},"comments":[],"incomingImports":[{"ref":2323}],"name":"inject","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2323,"importingEntity":{"ref":1213},"importedEntity":{"ref":2322}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2324,"element":{"ref":2326},"startPos":41,"endPos":47,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2326,"isStub":true,"sourceAnchor":{"ref":2324},"comments":[],"incomingImports":[{"ref":2327}],"name":"OnInit","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2327,"importingEntity":{"ref":1213},"importedEntity":{"ref":2326}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2328,"element":{"ref":2330},"startPos":81,"endPos":92,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2330,"isStub":true,"sourceAnchor":{"ref":2328},"comments":[],"incomingImports":[{"ref":2331}],"name":"FormControl","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2331,"importingEntity":{"ref":1213},"importedEntity":{"ref":2330}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2332,"element":{"ref":2334},"startPos":94,"endPos":105,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2334,"isStub":true,"sourceAnchor":{"ref":2332},"comments":[],"incomingImports":[{"ref":2335}],"name":"FormsModule","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2335,"importingEntity":{"ref":1213},"importedEntity":{"ref":2334}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2336,"element":{"ref":2338},"startPos":107,"endPos":126,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2338,"isStub":true,"sourceAnchor":{"ref":2336},"comments":[],"incomingImports":[{"ref":2339}],"name":"ReactiveFormsModule","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2339,"importingEntity":{"ref":1213},"importedEntity":{"ref":2338}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2340,"element":{"ref":2342},"startPos":161,"endPos":175,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2342,"isStub":true,"sourceAnchor":{"ref":2340},"comments":[],"incomingImports":[{"ref":2343}],"name":"ActivatedRoute","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2343,"importingEntity":{"ref":1213},"importedEntity":{"ref":2342}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2344,"element":{"ref":2346},"startPos":177,"endPos":183,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2346,"isStub":true,"sourceAnchor":{"ref":2344},"comments":[],"incomingImports":[{"ref":2347}],"name":"Router","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2347,"importingEntity":{"ref":1213},"importedEntity":{"ref":2346}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2348,"element":{"ref":2350},"startPos":185,"endPos":195,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2350,"isStub":true,"sourceAnchor":{"ref":2348},"comments":[],"incomingImports":[{"ref":2351}],"name":"RouterLink","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2351,"importingEntity":{"ref":1213},"importedEntity":{"ref":2350}},{"FM3":"FamixTypeScript.ImportClause","id":2352,"importingEntity":{"ref":1213},"importedEntity":{"ref":1854}},{"FM3":"FamixTypeScript.ImportClause","id":2353,"importingEntity":{"ref":1213},"importedEntity":{"ref":2010}},{"FM3":"FamixTypeScript.ImportClause","id":2354,"importingEntity":{"ref":1213},"importedEntity":{"ref":2004}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2355,"element":{"ref":2356},"startPos":409,"endPos":424,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2356,"sourceAnchor":{"ref":2355},"comments":[],"incomingImports":[{"ref":2357}],"name":"CommentsService","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2357,"importingEntity":{"ref":1213},"importedEntity":{"ref":2356}},{"FM3":"FamixTypeScript.ImportClause","id":2358,"importingEntity":{"ref":1213},"importedEntity":{"ref":1621}},{"FM3":"FamixTypeScript.ImportClause","id":2359,"importingEntity":{"ref":1213},"importedEntity":{"ref":2065}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2360,"element":{"ref":2362},"startPos":631,"endPos":640,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2362,"isStub":true,"sourceAnchor":{"ref":2360},"comments":[],"incomingImports":[{"ref":2363}],"name":"AsyncPipe","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2363,"importingEntity":{"ref":1213},"importedEntity":{"ref":2362}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2364,"element":{"ref":2366},"startPos":642,"endPos":649,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2366,"isStub":true,"sourceAnchor":{"ref":2364},"comments":[],"incomingImports":[{"ref":2367}],"name":"NgClass","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2367,"importingEntity":{"ref":1213},"importedEntity":{"ref":2366}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2368,"element":{"ref":2370},"startPos":651,"endPos":658,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2370,"isStub":true,"sourceAnchor":{"ref":2368},"comments":[],"incomingImports":[{"ref":2371}],"name":"NgForOf","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2371,"importingEntity":{"ref":1213},"importedEntity":{"ref":2370}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2372,"element":{"ref":2374},"startPos":660,"endPos":664,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2374,"isStub":true,"sourceAnchor":{"ref":2372},"comments":[],"incomingImports":[{"ref":2375}],"name":"NgIf","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2375,"importingEntity":{"ref":1213},"importedEntity":{"ref":2374}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2376,"element":{"ref":2377},"startPos":700,"endPos":712,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2377,"sourceAnchor":{"ref":2376},"comments":[],"incomingImports":[{"ref":2378}],"name":"MarkdownPipe","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2378,"importingEntity":{"ref":1213},"importedEntity":{"ref":2377}},{"FM3":"FamixTypeScript.ImportClause","id":2379,"importingEntity":{"ref":1213},"importedEntity":{"ref":1698}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2380,"element":{"ref":2381},"startPos":862,"endPos":885,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2381,"sourceAnchor":{"ref":2380},"comments":[],"incomingImports":[{"ref":2382}],"name":"ArticleCommentComponent","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2382,"importingEntity":{"ref":1213},"importedEntity":{"ref":2381}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2383,"element":{"ref":2385},"startPos":948,"endPos":958,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2385,"isStub":true,"sourceAnchor":{"ref":2383},"comments":[],"incomingImports":[{"ref":2386}],"name":"catchError","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2386,"importingEntity":{"ref":1213},"importedEntity":{"ref":2385}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2387,"element":{"ref":2389},"startPos":993,"endPos":1006,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2389,"isStub":true,"sourceAnchor":{"ref":2387},"comments":[],"incomingImports":[{"ref":2390}],"name":"combineLatest","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2390,"importingEntity":{"ref":1213},"importedEntity":{"ref":2389}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2391,"element":{"ref":2393},"startPos":1008,"endPos":1018,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2393,"isStub":true,"sourceAnchor":{"ref":2391},"comments":[],"incomingImports":[{"ref":2394}],"name":"throwError","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2394,"importingEntity":{"ref":1213},"importedEntity":{"ref":2393}},{"FM3":"FamixTypeScript.ImportClause","id":2395,"importingEntity":{"ref":1213},"importedEntity":{"ref":1973}},{"FM3":"FamixTypeScript.ImportClause","id":2396,"importingEntity":{"ref":1213},"importedEntity":{"ref":1808}},{"FM3":"FamixTypeScript.ImportClause","id":2397,"importingEntity":{"ref":1213},"importedEntity":{"ref":1701}},{"FM3":"FamixTypeScript.ImportClause","id":2398,"importingEntity":{"ref":1213},"importedEntity":{"ref":2126}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2399,"element":{"ref":2401},"startPos":1318,"endPos":1336,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2401,"isStub":true,"sourceAnchor":{"ref":2399},"comments":[],"incomingImports":[{"ref":2402}],"name":"takeUntilDestroyed","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2402,"importingEntity":{"ref":1213},"importedEntity":{"ref":2401}},{"FM3":"FamixTypeScript.ImportClause","id":2403,"importingEntity":{"ref":1213},"importedEntity":{"ref":2076}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2404,"element":{"ref":2405},"startPos":1469,"endPos":1490,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2405,"sourceAnchor":{"ref":2404},"comments":[],"incomingImports":[{"ref":2406},{"ref":2585}],"name":"FollowButtonComponent","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2406,"importingEntity":{"ref":1213},"importedEntity":{"ref":2405}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2407,"element":{"ref":2409},"startPos":10,"endPos":17,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2409,"isStub":true,"sourceAnchor":{"ref":2407},"comments":[],"incomingImports":[{"ref":2410}],"name":"NgForOf","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2410,"importingEntity":{"ref":1347},"importedEntity":{"ref":2409}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2411,"element":{"ref":2413},"startPos":53,"endPos":62,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2413,"isStub":true,"sourceAnchor":{"ref":2411},"comments":[],"incomingImports":[{"ref":2414}],"name":"Component","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2414,"importingEntity":{"ref":1347},"importedEntity":{"ref":2413}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2415,"element":{"ref":2417},"startPos":64,"endPos":74,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2417,"isStub":true,"sourceAnchor":{"ref":2415},"comments":[],"incomingImports":[{"ref":2418}],"name":"DestroyRef","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2418,"importingEntity":{"ref":1347},"importedEntity":{"ref":2417}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2419,"element":{"ref":2421},"startPos":76,"endPos":82,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2421,"isStub":true,"sourceAnchor":{"ref":2419},"comments":[],"incomingImports":[{"ref":2422}],"name":"inject","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2422,"importingEntity":{"ref":1347},"importedEntity":{"ref":2421}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2423,"element":{"ref":2425},"startPos":84,"endPos":90,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2425,"isStub":true,"sourceAnchor":{"ref":2423},"comments":[],"incomingImports":[{"ref":2426}],"name":"OnInit","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2426,"importingEntity":{"ref":1347},"importedEntity":{"ref":2425}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2427,"element":{"ref":2429},"startPos":126,"endPos":137,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2429,"isStub":true,"sourceAnchor":{"ref":2427},"comments":[],"incomingImports":[{"ref":2430}],"name":"FormControl","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2430,"importingEntity":{"ref":1347},"importedEntity":{"ref":2429}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2431,"element":{"ref":2433},"startPos":141,"endPos":150,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2433,"isStub":true,"sourceAnchor":{"ref":2431},"comments":[],"incomingImports":[{"ref":2434}],"name":"FormGroup","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2434,"importingEntity":{"ref":1347},"importedEntity":{"ref":2433}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2435,"element":{"ref":2437},"startPos":154,"endPos":173,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2437,"isStub":true,"sourceAnchor":{"ref":2435},"comments":[],"incomingImports":[{"ref":2438}],"name":"ReactiveFormsModule","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2438,"importingEntity":{"ref":1347},"importedEntity":{"ref":2437}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2439,"element":{"ref":2441},"startPos":177,"endPos":193,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2441,"isStub":true,"sourceAnchor":{"ref":2439},"comments":[],"incomingImports":[{"ref":2442}],"name":"UntypedFormGroup","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2442,"importingEntity":{"ref":1347},"importedEntity":{"ref":2441}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2443,"element":{"ref":2445},"startPos":229,"endPos":243,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2445,"isStub":true,"sourceAnchor":{"ref":2443},"comments":[],"incomingImports":[{"ref":2446}],"name":"ActivatedRoute","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2446,"importingEntity":{"ref":1347},"importedEntity":{"ref":2445}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2447,"element":{"ref":2449},"startPos":245,"endPos":251,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2449,"isStub":true,"sourceAnchor":{"ref":2447},"comments":[],"incomingImports":[{"ref":2450}],"name":"Router","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2450,"importingEntity":{"ref":1347},"importedEntity":{"ref":2449}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2451,"element":{"ref":2453},"startPos":287,"endPos":300,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2453,"isStub":true,"sourceAnchor":{"ref":2451},"comments":[],"incomingImports":[{"ref":2454}],"name":"combineLatest","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2454,"importingEntity":{"ref":1347},"importedEntity":{"ref":2453}},{"FM3":"FamixTypeScript.ImportClause","id":2455,"importingEntity":{"ref":1347},"importedEntity":{"ref":1701}},{"FM3":"FamixTypeScript.ImportClause","id":2456,"importingEntity":{"ref":1347},"importedEntity":{"ref":2004}},{"FM3":"FamixTypeScript.ImportClause","id":2457,"importingEntity":{"ref":1347},"importedEntity":{"ref":1621}},{"FM3":"FamixTypeScript.ImportClause","id":2458,"importingEntity":{"ref":1347},"importedEntity":{"ref":1698}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2459,"element":{"ref":2461},"startPos":621,"endPos":639,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2461,"isStub":true,"sourceAnchor":{"ref":2459},"comments":[],"incomingImports":[{"ref":2462}],"name":"takeUntilDestroyed","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2462,"importingEntity":{"ref":1347},"importedEntity":{"ref":2461}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2463,"element":{"ref":2465},"startPos":10,"endPos":19,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2465,"isStub":true,"sourceAnchor":{"ref":2463},"comments":[],"incomingImports":[{"ref":2466}],"name":"Component","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2466,"importingEntity":{"ref":1443},"importedEntity":{"ref":2465}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2467,"element":{"ref":2469},"startPos":21,"endPos":31,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2469,"isStub":true,"sourceAnchor":{"ref":2467},"comments":[],"incomingImports":[{"ref":2470}],"name":"DestroyRef","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2470,"importingEntity":{"ref":1443},"importedEntity":{"ref":2469}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2471,"element":{"ref":2473},"startPos":33,"endPos":39,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2473,"isStub":true,"sourceAnchor":{"ref":2471},"comments":[],"incomingImports":[{"ref":2474}],"name":"inject","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2474,"importingEntity":{"ref":1443},"importedEntity":{"ref":2473}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2475,"element":{"ref":2477},"startPos":41,"endPos":47,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2477,"isStub":true,"sourceAnchor":{"ref":2475},"comments":[],"incomingImports":[{"ref":2478}],"name":"OnInit","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2478,"importingEntity":{"ref":1443},"importedEntity":{"ref":2477}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2479,"element":{"ref":2481},"startPos":81,"endPos":87,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2481,"isStub":true,"sourceAnchor":{"ref":2479},"comments":[],"incomingImports":[{"ref":2482}],"name":"Router","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2482,"importingEntity":{"ref":1443},"importedEntity":{"ref":2481}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2483,"element":{"ref":2484},"startPos":123,"endPos":134,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2484,"sourceAnchor":{"ref":2483},"comments":[],"incomingImports":[{"ref":2485}],"name":"TagsService","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2485,"importingEntity":{"ref":1443},"importedEntity":{"ref":2484}},{"FM3":"FamixTypeScript.ImportClause","id":2486,"importingEntity":{"ref":1443},"importedEntity":{"ref":2007}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2487,"element":{"ref":2489},"startPos":258,"endPos":267,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2489,"isStub":true,"sourceAnchor":{"ref":2487},"comments":[],"incomingImports":[{"ref":2490}],"name":"AsyncPipe","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2490,"importingEntity":{"ref":1443},"importedEntity":{"ref":2489}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2491,"element":{"ref":2493},"startPos":269,"endPos":276,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2493,"isStub":true,"sourceAnchor":{"ref":2491},"comments":[],"incomingImports":[{"ref":2494}],"name":"NgClass","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2494,"importingEntity":{"ref":1443},"importedEntity":{"ref":2493}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2495,"element":{"ref":2497},"startPos":278,"endPos":285,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2497,"isStub":true,"sourceAnchor":{"ref":2495},"comments":[],"incomingImports":[{"ref":2498}],"name":"NgForOf","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2498,"importingEntity":{"ref":1443},"importedEntity":{"ref":2497}},{"FM3":"FamixTypeScript.ImportClause","id":2499,"importingEntity":{"ref":1443},"importedEntity":{"ref":2254}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2500,"element":{"ref":2502},"startPos":401,"endPos":404,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2502,"isStub":true,"sourceAnchor":{"ref":2500},"comments":[],"incomingImports":[{"ref":2503}],"name":"tap","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2503,"importingEntity":{"ref":1443},"importedEntity":{"ref":2502}},{"FM3":"FamixTypeScript.ImportClause","id":2504,"importingEntity":{"ref":1443},"importedEntity":{"ref":1621}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2505,"element":{"ref":2507},"startPos":514,"endPos":519,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2507,"isStub":true,"sourceAnchor":{"ref":2505},"comments":[],"incomingImports":[{"ref":2508}],"name":"RxLet","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2508,"importingEntity":{"ref":1443},"importedEntity":{"ref":2507}},{"FM3":"FamixTypeScript.ImportClause","id":2509,"importingEntity":{"ref":1443},"importedEntity":{"ref":1808}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2510,"element":{"ref":2512},"startPos":657,"endPos":675,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2512,"isStub":true,"sourceAnchor":{"ref":2510},"comments":[],"incomingImports":[{"ref":2513}],"name":"takeUntilDestroyed","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2513,"importingEntity":{"ref":1443},"importedEntity":{"ref":2512}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2514,"element":{"ref":2516},"startPos":10,"endPos":19,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2516,"isStub":true,"sourceAnchor":{"ref":2514},"comments":[],"incomingImports":[{"ref":2517}],"name":"Component","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2517,"importingEntity":{"ref":1499},"importedEntity":{"ref":2516}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2518,"element":{"ref":2520},"startPos":21,"endPos":31,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2520,"isStub":true,"sourceAnchor":{"ref":2518},"comments":[],"incomingImports":[{"ref":2521}],"name":"DestroyRef","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2521,"importingEntity":{"ref":1499},"importedEntity":{"ref":2520}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2522,"element":{"ref":2524},"startPos":33,"endPos":39,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2524,"isStub":true,"sourceAnchor":{"ref":2522},"comments":[],"incomingImports":[{"ref":2525}],"name":"inject","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2525,"importingEntity":{"ref":1499},"importedEntity":{"ref":2524}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2526,"element":{"ref":2528},"startPos":41,"endPos":47,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2528,"isStub":true,"sourceAnchor":{"ref":2526},"comments":[],"incomingImports":[{"ref":2529}],"name":"OnInit","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2529,"importingEntity":{"ref":1499},"importedEntity":{"ref":2528}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2530,"element":{"ref":2532},"startPos":83,"endPos":97,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2532,"isStub":true,"sourceAnchor":{"ref":2530},"comments":[],"incomingImports":[{"ref":2533}],"name":"ActivatedRoute","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2533,"importingEntity":{"ref":1499},"importedEntity":{"ref":2532}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2534,"element":{"ref":2536},"startPos":101,"endPos":107,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2536,"isStub":true,"sourceAnchor":{"ref":2534},"comments":[],"incomingImports":[{"ref":2537}],"name":"Router","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2537,"importingEntity":{"ref":1499},"importedEntity":{"ref":2536}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2538,"element":{"ref":2540},"startPos":111,"endPos":121,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2540,"isStub":true,"sourceAnchor":{"ref":2538},"comments":[],"incomingImports":[{"ref":2541}],"name":"RouterLink","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2541,"importingEntity":{"ref":1499},"importedEntity":{"ref":2540}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2542,"element":{"ref":2544},"startPos":125,"endPos":141,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2544,"isStub":true,"sourceAnchor":{"ref":2542},"comments":[],"incomingImports":[{"ref":2545}],"name":"RouterLinkActive","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2545,"importingEntity":{"ref":1499},"importedEntity":{"ref":2544}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2546,"element":{"ref":2548},"startPos":145,"endPos":157,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2548,"isStub":true,"sourceAnchor":{"ref":2546},"comments":[],"incomingImports":[{"ref":2549}],"name":"RouterOutlet","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2549,"importingEntity":{"ref":1499},"importedEntity":{"ref":2548}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2550,"element":{"ref":2552},"startPos":194,"endPos":204,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2552,"isStub":true,"sourceAnchor":{"ref":2550},"comments":[],"incomingImports":[{"ref":2553}],"name":"catchError","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2553,"importingEntity":{"ref":1499},"importedEntity":{"ref":2552}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2554,"element":{"ref":2556},"startPos":206,"endPos":215,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2556,"isStub":true,"sourceAnchor":{"ref":2554},"comments":[],"incomingImports":[{"ref":2557}],"name":"switchMap","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2557,"importingEntity":{"ref":1499},"importedEntity":{"ref":2556}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2558,"element":{"ref":2560},"startPos":250,"endPos":263,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2560,"isStub":true,"sourceAnchor":{"ref":2558},"comments":[],"incomingImports":[{"ref":2561}],"name":"combineLatest","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2561,"importingEntity":{"ref":1499},"importedEntity":{"ref":2560}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2562,"element":{"ref":2564},"startPos":265,"endPos":267,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2564,"isStub":true,"sourceAnchor":{"ref":2562},"comments":[],"incomingImports":[{"ref":2565}],"name":"of","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2565,"importingEntity":{"ref":1499},"importedEntity":{"ref":2564}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2566,"element":{"ref":2568},"startPos":269,"endPos":279,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2568,"isStub":true,"sourceAnchor":{"ref":2566},"comments":[],"incomingImports":[{"ref":2569}],"name":"throwError","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2569,"importingEntity":{"ref":1499},"importedEntity":{"ref":2568}},{"FM3":"FamixTypeScript.ImportClause","id":2570,"importingEntity":{"ref":1499},"importedEntity":{"ref":1621}},{"FM3":"FamixTypeScript.ImportClause","id":2571,"importingEntity":{"ref":1499},"importedEntity":{"ref":2126}},{"FM3":"FamixTypeScript.ImportClause","id":2572,"importingEntity":{"ref":1499},"importedEntity":{"ref":2221}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2573,"element":{"ref":2575},"startPos":498,"endPos":507,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2575,"isStub":true,"sourceAnchor":{"ref":2573},"comments":[],"incomingImports":[{"ref":2576}],"name":"AsyncPipe","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2576,"importingEntity":{"ref":1499},"importedEntity":{"ref":2575}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2577,"element":{"ref":2579},"startPos":509,"endPos":513,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2579,"isStub":true,"sourceAnchor":{"ref":2577},"comments":[],"incomingImports":[{"ref":2580}],"name":"NgIf","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2580,"importingEntity":{"ref":1499},"importedEntity":{"ref":2579}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2581,"element":{"ref":2583},"startPos":549,"endPos":567,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.NamedEntity","id":2583,"isStub":true,"sourceAnchor":{"ref":2581},"comments":[],"incomingImports":[{"ref":2584}],"name":"takeUntilDestroyed","decorators":[]},{"FM3":"FamixTypeScript.ImportClause","id":2584,"importingEntity":{"ref":1499},"importedEntity":{"ref":2583}},{"FM3":"FamixTypeScript.ImportClause","id":2585,"importingEntity":{"ref":1499},"importedEntity":{"ref":2405}},{"FM3":"FamixTypeScript.Access","id":2586,"accessor":{"ref":3},"variable":{"ref":11}},{"FM3":"FamixTypeScript.Access","id":2587,"accessor":{"ref":3},"variable":{"ref":23}},{"FM3":"FamixTypeScript.Access","id":2588,"accessor":{"ref":19},"variable":{"ref":45}},{"FM3":"FamixTypeScript.Access","id":2589,"accessor":{"ref":41},"variable":{"ref":67}},{"FM3":"FamixTypeScript.Access","id":2590,"accessor":{"ref":41},"variable":{"ref":71}},{"FM3":"FamixTypeScript.Access","id":2591,"accessor":{"ref":41},"variable":{"ref":79}},{"FM3":"FamixTypeScript.Access","id":2592,"accessor":{"ref":41},"variable":{"ref":83}},{"FM3":"FamixTypeScript.Access","id":2593,"accessor":{"ref":144},"variable":{"ref":125}},{"FM3":"FamixTypeScript.Access","id":2594,"accessor":{"ref":146},"variable":{"ref":125}},{"FM3":"FamixTypeScript.Access","id":2595,"accessor":{"ref":144},"variable":{"ref":127}},{"FM3":"FamixTypeScript.Access","id":2596,"accessor":{"ref":146},"variable":{"ref":131}},{"FM3":"FamixTypeScript.Access","id":2597,"accessor":{"ref":146},"variable":{"ref":133}},{"FM3":"FamixTypeScript.Access","id":2598,"accessor":{"ref":158},"variable":{"ref":141}},{"FM3":"FamixTypeScript.Access","id":2599,"accessor":{"ref":144},"variable":{"ref":141}},{"FM3":"FamixTypeScript.Access","id":2600,"accessor":{"ref":146},"variable":{"ref":141}},{"FM3":"FamixTypeScript.Access","id":2601,"accessor":{"ref":146},"variable":{"ref":143}},{"FM3":"FamixTypeScript.Access","id":2602,"accessor":{"ref":146},"variable":{"ref":149}},{"FM3":"FamixTypeScript.Access","id":2603,"accessor":{"ref":146},"variable":{"ref":157}},{"FM3":"FamixTypeScript.Access","id":2604,"accessor":{"ref":144},"variable":{"ref":165}},{"FM3":"FamixTypeScript.Access","id":2605,"accessor":{"ref":146},"variable":{"ref":171}},{"FM3":"FamixTypeScript.Access","id":2606,"accessor":{"ref":146},"variable":{"ref":175}},{"FM3":"FamixTypeScript.Access","id":2607,"accessor":{"ref":146},"variable":{"ref":195}},{"FM3":"FamixTypeScript.Access","id":2608,"accessor":{"ref":210},"variable":{"ref":205}},{"FM3":"FamixTypeScript.Access","id":2609,"accessor":{"ref":210},"variable":{"ref":207}},{"FM3":"FamixTypeScript.Access","id":2610,"accessor":{"ref":246},"variable":{"ref":207}},{"FM3":"FamixTypeScript.Access","id":2611,"accessor":{"ref":210},"variable":{"ref":209}},{"FM3":"FamixTypeScript.Access","id":2612,"accessor":{"ref":210},"variable":{"ref":215}},{"FM3":"FamixTypeScript.Access","id":2613,"accessor":{"ref":210},"variable":{"ref":217}},{"FM3":"FamixTypeScript.Access","id":2614,"accessor":{"ref":210},"variable":{"ref":219}},{"FM3":"FamixTypeScript.Access","id":2615,"accessor":{"ref":210},"variable":{"ref":233}},{"FM3":"FamixTypeScript.Access","id":2616,"accessor":{"ref":210},"variable":{"ref":237}},{"FM3":"FamixTypeScript.Access","id":2617,"accessor":{"ref":210},"variable":{"ref":243}},{"FM3":"FamixTypeScript.Access","id":2618,"accessor":{"ref":246},"variable":{"ref":249}},{"FM3":"FamixTypeScript.Access","id":2619,"accessor":{"ref":210},"variable":{"ref":255}},{"FM3":"FamixTypeScript.Access","id":2620,"accessor":{"ref":210},"variable":{"ref":257}},{"FM3":"FamixTypeScript.Access","id":2621,"accessor":{"ref":210},"variable":{"ref":259}},{"FM3":"FamixTypeScript.Access","id":2622,"accessor":{"ref":19},"variable":{"ref":279}},{"FM3":"FamixTypeScript.Access","id":2623,"accessor":{"ref":275},"variable":{"ref":283}},{"FM3":"FamixTypeScript.Access","id":2624,"accessor":{"ref":275},"variable":{"ref":285}},{"FM3":"FamixTypeScript.Access","id":2625,"accessor":{"ref":275},"variable":{"ref":287}},{"FM3":"FamixTypeScript.Access","id":2626,"accessor":{"ref":19},"variable":{"ref":291}},{"FM3":"FamixTypeScript.Access","id":2627,"accessor":{"ref":289},"variable":{"ref":295}},{"FM3":"FamixTypeScript.Access","id":2628,"accessor":{"ref":289},"variable":{"ref":297}},{"FM3":"FamixTypeScript.Access","id":2629,"accessor":{"ref":289},"variable":{"ref":301}},{"FM3":"FamixTypeScript.Access","id":2630,"accessor":{"ref":289},"variable":{"ref":309}},{"FM3":"FamixTypeScript.Access","id":2631,"accessor":{"ref":19},"variable":{"ref":317}},{"FM3":"FamixTypeScript.Access","id":2632,"accessor":{"ref":315},"variable":{"ref":321}},{"FM3":"FamixTypeScript.Access","id":2633,"accessor":{"ref":315},"variable":{"ref":323}},{"FM3":"FamixTypeScript.Access","id":2634,"accessor":{"ref":315},"variable":{"ref":325}},{"FM3":"FamixTypeScript.Access","id":2635,"accessor":{"ref":315},"variable":{"ref":327}},{"FM3":"FamixTypeScript.Access","id":2636,"accessor":{"ref":674},"variable":{"ref":365}},{"FM3":"FamixTypeScript.Access","id":2637,"accessor":{"ref":674},"variable":{"ref":369}},{"FM3":"FamixTypeScript.Access","id":2638,"accessor":{"ref":371},"variable":{"ref":373}},{"FM3":"FamixTypeScript.Access","id":2639,"accessor":{"ref":406},"variable":{"ref":397}},{"FM3":"FamixTypeScript.Access","id":2640,"accessor":{"ref":410},"variable":{"ref":397}},{"FM3":"FamixTypeScript.Access","id":2641,"accessor":{"ref":410},"variable":{"ref":401}},{"FM3":"FamixTypeScript.Access","id":2642,"accessor":{"ref":410},"variable":{"ref":403}},{"FM3":"FamixTypeScript.Access","id":2643,"accessor":{"ref":410},"variable":{"ref":405}},{"FM3":"FamixTypeScript.Access","id":2644,"accessor":{"ref":410},"variable":{"ref":421}},{"FM3":"FamixTypeScript.Access","id":2645,"accessor":{"ref":410},"variable":{"ref":427}},{"FM3":"FamixTypeScript.Access","id":2646,"accessor":{"ref":406},"variable":{"ref":431}},{"FM3":"FamixTypeScript.Access","id":2647,"accessor":{"ref":408},"variable":{"ref":431}},{"FM3":"FamixTypeScript.Access","id":2648,"accessor":{"ref":410},"variable":{"ref":431}},{"FM3":"FamixTypeScript.Access","id":2649,"accessor":{"ref":410},"variable":{"ref":453}},{"FM3":"FamixTypeScript.Access","id":2650,"accessor":{"ref":464},"variable":{"ref":463}},{"FM3":"FamixTypeScript.Access","id":2651,"accessor":{"ref":464},"variable":{"ref":467}},{"FM3":"FamixTypeScript.Access","id":2652,"accessor":{"ref":464},"variable":{"ref":471}},{"FM3":"FamixTypeScript.Access","id":2653,"accessor":{"ref":464},"variable":{"ref":477}},{"FM3":"FamixTypeScript.Access","id":2654,"accessor":{"ref":486},"variable":{"ref":485}},{"FM3":"FamixTypeScript.Access","id":2655,"accessor":{"ref":486},"variable":{"ref":491}},{"FM3":"FamixTypeScript.Access","id":2656,"accessor":{"ref":502},"variable":{"ref":505}},{"FM3":"FamixTypeScript.Access","id":2657,"accessor":{"ref":556},"variable":{"ref":515}},{"FM3":"FamixTypeScript.Access","id":2658,"accessor":{"ref":568},"variable":{"ref":515}},{"FM3":"FamixTypeScript.Access","id":2659,"accessor":{"ref":572},"variable":{"ref":515}},{"FM3":"FamixTypeScript.Access","id":2660,"accessor":{"ref":1510},"variable":{"ref":517}},{"FM3":"FamixTypeScript.Access","id":2661,"accessor":{"ref":1236},"variable":{"ref":517}},{"FM3":"FamixTypeScript.Access","id":2662,"accessor":{"ref":210},"variable":{"ref":519}},{"FM3":"FamixTypeScript.Access","id":2663,"accessor":{"ref":768},"variable":{"ref":519}},{"FM3":"FamixTypeScript.Access","id":2664,"accessor":{"ref":1458},"variable":{"ref":519}},{"FM3":"FamixTypeScript.Access","id":2665,"accessor":{"ref":1040},"variable":{"ref":519}},{"FM3":"FamixTypeScript.Access","id":2666,"accessor":{"ref":520},"variable":{"ref":531}},{"FM3":"FamixTypeScript.Access","id":2667,"accessor":{"ref":536},"variable":{"ref":541}},{"FM3":"FamixTypeScript.Access","id":2668,"accessor":{"ref":556},"variable":{"ref":563}},{"FM3":"FamixTypeScript.Access","id":2669,"accessor":{"ref":568},"variable":{"ref":571}},{"FM3":"FamixTypeScript.Access","id":2670,"accessor":{"ref":520},"variable":{"ref":579}},{"FM3":"FamixTypeScript.Access","id":2671,"accessor":{"ref":536},"variable":{"ref":579}},{"FM3":"FamixTypeScript.Access","id":2672,"accessor":{"ref":548},"variable":{"ref":579}},{"FM3":"FamixTypeScript.Access","id":2673,"accessor":{"ref":556},"variable":{"ref":579}},{"FM3":"FamixTypeScript.Access","id":2674,"accessor":{"ref":568},"variable":{"ref":583}},{"FM3":"FamixTypeScript.Access","id":2675,"accessor":{"ref":572},"variable":{"ref":583}},{"FM3":"FamixTypeScript.Access","id":2676,"accessor":{"ref":546},"variable":{"ref":587}},{"FM3":"FamixTypeScript.Access","id":2677,"accessor":{"ref":702},"variable":{"ref":645}},{"FM3":"FamixTypeScript.Access","id":2678,"accessor":{"ref":674},"variable":{"ref":645}},{"FM3":"FamixTypeScript.Access","id":2679,"accessor":{"ref":674},"variable":{"ref":649}},{"FM3":"FamixTypeScript.Access","id":2680,"accessor":{"ref":702},"variable":{"ref":651}},{"FM3":"FamixTypeScript.Access","id":2681,"accessor":{"ref":670},"variable":{"ref":651}},{"FM3":"FamixTypeScript.Access","id":2682,"accessor":{"ref":674},"variable":{"ref":651}},{"FM3":"FamixTypeScript.Access","id":2683,"accessor":{"ref":674},"variable":{"ref":655}},{"FM3":"FamixTypeScript.Access","id":2684,"accessor":{"ref":674},"variable":{"ref":659}},{"FM3":"FamixTypeScript.Access","id":2685,"accessor":{"ref":674},"variable":{"ref":665}},{"FM3":"FamixTypeScript.Access","id":2686,"accessor":{"ref":674},"variable":{"ref":667}},{"FM3":"FamixTypeScript.Access","id":2687,"accessor":{"ref":670},"variable":{"ref":673}},{"FM3":"FamixTypeScript.Access","id":2688,"accessor":{"ref":674},"variable":{"ref":679}},{"FM3":"FamixTypeScript.Access","id":2689,"accessor":{"ref":674},"variable":{"ref":685}},{"FM3":"FamixTypeScript.Access","id":2690,"accessor":{"ref":674},"variable":{"ref":691}},{"FM3":"FamixTypeScript.Access","id":2691,"accessor":{"ref":674},"variable":{"ref":699}},{"FM3":"FamixTypeScript.Access","id":2692,"accessor":{"ref":702},"variable":{"ref":705}},{"FM3":"FamixTypeScript.Access","id":2693,"accessor":{"ref":674},"variable":{"ref":711}},{"FM3":"FamixTypeScript.Access","id":2694,"accessor":{"ref":674},"variable":{"ref":717}},{"FM3":"FamixTypeScript.Access","id":2695,"accessor":{"ref":674},"variable":{"ref":723}},{"FM3":"FamixTypeScript.Access","id":2696,"accessor":{"ref":746},"variable":{"ref":743}},{"FM3":"FamixTypeScript.Access","id":2697,"accessor":{"ref":746},"variable":{"ref":749}},{"FM3":"FamixTypeScript.Access","id":2698,"accessor":{"ref":768},"variable":{"ref":757}},{"FM3":"FamixTypeScript.Access","id":2699,"accessor":{"ref":768},"variable":{"ref":759}},{"FM3":"FamixTypeScript.Access","id":2700,"accessor":{"ref":768},"variable":{"ref":761}},{"FM3":"FamixTypeScript.Access","id":2701,"accessor":{"ref":768},"variable":{"ref":765}},{"FM3":"FamixTypeScript.Access","id":2702,"accessor":{"ref":768},"variable":{"ref":773}},{"FM3":"FamixTypeScript.Access","id":2703,"accessor":{"ref":768},"variable":{"ref":783}},{"FM3":"FamixTypeScript.Access","id":2704,"accessor":{"ref":768},"variable":{"ref":787}},{"FM3":"FamixTypeScript.Access","id":2705,"accessor":{"ref":768},"variable":{"ref":791}},{"FM3":"FamixTypeScript.Access","id":2706,"accessor":{"ref":768},"variable":{"ref":797}},{"FM3":"FamixTypeScript.Access","id":2707,"accessor":{"ref":856},"variable":{"ref":863}},{"FM3":"FamixTypeScript.Access","id":2708,"accessor":{"ref":856},"variable":{"ref":865}},{"FM3":"FamixTypeScript.Access","id":2709,"accessor":{"ref":856},"variable":{"ref":871}},{"FM3":"FamixTypeScript.Access","id":2710,"accessor":{"ref":872},"variable":{"ref":877}},{"FM3":"FamixTypeScript.Access","id":2711,"accessor":{"ref":872},"variable":{"ref":881}},{"FM3":"FamixTypeScript.Access","id":2712,"accessor":{"ref":882},"variable":{"ref":887}},{"FM3":"FamixTypeScript.Access","id":2713,"accessor":{"ref":888},"variable":{"ref":893}},{"FM3":"FamixTypeScript.Access","id":2714,"accessor":{"ref":888},"variable":{"ref":897}},{"FM3":"FamixTypeScript.Access","id":2715,"accessor":{"ref":898},"variable":{"ref":901}},{"FM3":"FamixTypeScript.Access","id":2716,"accessor":{"ref":898},"variable":{"ref":905}},{"FM3":"FamixTypeScript.Access","id":2717,"accessor":{"ref":906},"variable":{"ref":909}},{"FM3":"FamixTypeScript.Access","id":2718,"accessor":{"ref":906},"variable":{"ref":913}},{"FM3":"FamixTypeScript.Access","id":2719,"accessor":{"ref":914},"variable":{"ref":917}},{"FM3":"FamixTypeScript.Access","id":2720,"accessor":{"ref":856},"variable":{"ref":921}},{"FM3":"FamixTypeScript.Access","id":2721,"accessor":{"ref":872},"variable":{"ref":921}},{"FM3":"FamixTypeScript.Access","id":2722,"accessor":{"ref":882},"variable":{"ref":921}},{"FM3":"FamixTypeScript.Access","id":2723,"accessor":{"ref":888},"variable":{"ref":921}},{"FM3":"FamixTypeScript.Access","id":2724,"accessor":{"ref":898},"variable":{"ref":921}},{"FM3":"FamixTypeScript.Access","id":2725,"accessor":{"ref":906},"variable":{"ref":921}},{"FM3":"FamixTypeScript.Access","id":2726,"accessor":{"ref":914},"variable":{"ref":921}},{"FM3":"FamixTypeScript.Access","id":2727,"accessor":{"ref":856},"variable":{"ref":927}},{"FM3":"FamixTypeScript.Access","id":2728,"accessor":{"ref":872},"variable":{"ref":931}},{"FM3":"FamixTypeScript.Access","id":2729,"accessor":{"ref":888},"variable":{"ref":935}},{"FM3":"FamixTypeScript.Access","id":2730,"accessor":{"ref":898},"variable":{"ref":939}},{"FM3":"FamixTypeScript.Access","id":2731,"accessor":{"ref":906},"variable":{"ref":943}},{"FM3":"FamixTypeScript.Access","id":2732,"accessor":{"ref":950},"variable":{"ref":957}},{"FM3":"FamixTypeScript.Access","id":2733,"accessor":{"ref":950},"variable":{"ref":961}},{"FM3":"FamixTypeScript.Access","id":2734,"accessor":{"ref":962},"variable":{"ref":967}},{"FM3":"FamixTypeScript.Access","id":2735,"accessor":{"ref":962},"variable":{"ref":969}},{"FM3":"FamixTypeScript.Access","id":2736,"accessor":{"ref":962},"variable":{"ref":973}},{"FM3":"FamixTypeScript.Access","id":2737,"accessor":{"ref":974},"variable":{"ref":977}},{"FM3":"FamixTypeScript.Access","id":2738,"accessor":{"ref":974},"variable":{"ref":979}},{"FM3":"FamixTypeScript.Access","id":2739,"accessor":{"ref":950},"variable":{"ref":985}},{"FM3":"FamixTypeScript.Access","id":2740,"accessor":{"ref":962},"variable":{"ref":985}},{"FM3":"FamixTypeScript.Access","id":2741,"accessor":{"ref":974},"variable":{"ref":985}},{"FM3":"FamixTypeScript.Access","id":2742,"accessor":{"ref":950},"variable":{"ref":991}},{"FM3":"FamixTypeScript.Access","id":2743,"accessor":{"ref":962},"variable":{"ref":995}},{"FM3":"FamixTypeScript.Access","id":2744,"accessor":{"ref":1002},"variable":{"ref":1009}},{"FM3":"FamixTypeScript.Access","id":2745,"accessor":{"ref":1002},"variable":{"ref":1015}},{"FM3":"FamixTypeScript.Access","id":2746,"accessor":{"ref":1002},"variable":{"ref":1021}},{"FM3":"FamixTypeScript.Access","id":2747,"accessor":{"ref":1040},"variable":{"ref":1029}},{"FM3":"FamixTypeScript.Access","id":2748,"accessor":{"ref":1040},"variable":{"ref":1033}},{"FM3":"FamixTypeScript.Access","id":2749,"accessor":{"ref":1040},"variable":{"ref":1037}},{"FM3":"FamixTypeScript.Access","id":2750,"accessor":{"ref":1040},"variable":{"ref":1039}},{"FM3":"FamixTypeScript.Access","id":2751,"accessor":{"ref":1040},"variable":{"ref":1045}},{"FM3":"FamixTypeScript.Access","id":2752,"accessor":{"ref":1040},"variable":{"ref":1049}},{"FM3":"FamixTypeScript.Access","id":2753,"accessor":{"ref":1040},"variable":{"ref":1059}},{"FM3":"FamixTypeScript.Access","id":2754,"accessor":{"ref":1040},"variable":{"ref":1063}},{"FM3":"FamixTypeScript.Access","id":2755,"accessor":{"ref":1040},"variable":{"ref":1067}},{"FM3":"FamixTypeScript.Access","id":2756,"accessor":{"ref":1040},"variable":{"ref":1073}},{"FM3":"FamixTypeScript.Access","id":2757,"accessor":{"ref":1040},"variable":{"ref":1077}},{"FM3":"FamixTypeScript.Access","id":2758,"accessor":{"ref":1092},"variable":{"ref":1087}},{"FM3":"FamixTypeScript.Access","id":2759,"accessor":{"ref":1092},"variable":{"ref":1089}},{"FM3":"FamixTypeScript.Access","id":2760,"accessor":{"ref":1092},"variable":{"ref":1091}},{"FM3":"FamixTypeScript.Access","id":2761,"accessor":{"ref":1092},"variable":{"ref":1097}},{"FM3":"FamixTypeScript.Access","id":2762,"accessor":{"ref":1092},"variable":{"ref":1103}},{"FM3":"FamixTypeScript.Access","id":2763,"accessor":{"ref":1092},"variable":{"ref":1107}},{"FM3":"FamixTypeScript.Access","id":2764,"accessor":{"ref":1092},"variable":{"ref":1113}},{"FM3":"FamixTypeScript.Access","id":2765,"accessor":{"ref":1126},"variable":{"ref":1121}},{"FM3":"FamixTypeScript.Access","id":2766,"accessor":{"ref":1126},"variable":{"ref":1123}},{"FM3":"FamixTypeScript.Access","id":2767,"accessor":{"ref":1126},"variable":{"ref":1125}},{"FM3":"FamixTypeScript.Access","id":2768,"accessor":{"ref":1126},"variable":{"ref":1131}},{"FM3":"FamixTypeScript.Access","id":2769,"accessor":{"ref":1126},"variable":{"ref":1137}},{"FM3":"FamixTypeScript.Access","id":2770,"accessor":{"ref":1126},"variable":{"ref":1141}},{"FM3":"FamixTypeScript.Access","id":2771,"accessor":{"ref":1126},"variable":{"ref":1147}},{"FM3":"FamixTypeScript.Access","id":2772,"accessor":{"ref":1166},"variable":{"ref":1171}},{"FM3":"FamixTypeScript.Access","id":2773,"accessor":{"ref":1166},"variable":{"ref":1177}},{"FM3":"FamixTypeScript.Access","id":2774,"accessor":{"ref":1178},"variable":{"ref":1181}},{"FM3":"FamixTypeScript.Access","id":2775,"accessor":{"ref":1178},"variable":{"ref":1185}},{"FM3":"FamixTypeScript.Access","id":2776,"accessor":{"ref":1186},"variable":{"ref":1189}},{"FM3":"FamixTypeScript.Access","id":2777,"accessor":{"ref":1186},"variable":{"ref":1193}},{"FM3":"FamixTypeScript.Access","id":2778,"accessor":{"ref":1166},"variable":{"ref":1197}},{"FM3":"FamixTypeScript.Access","id":2779,"accessor":{"ref":1178},"variable":{"ref":1197}},{"FM3":"FamixTypeScript.Access","id":2780,"accessor":{"ref":1186},"variable":{"ref":1197}},{"FM3":"FamixTypeScript.Access","id":2781,"accessor":{"ref":1166},"variable":{"ref":1203}},{"FM3":"FamixTypeScript.Access","id":2782,"accessor":{"ref":1178},"variable":{"ref":1207}},{"FM3":"FamixTypeScript.Access","id":2783,"accessor":{"ref":1186},"variable":{"ref":1211}},{"FM3":"FamixTypeScript.Access","id":2784,"accessor":{"ref":1236},"variable":{"ref":1219}},{"FM3":"FamixTypeScript.Access","id":2785,"accessor":{"ref":1254},"variable":{"ref":1219}},{"FM3":"FamixTypeScript.Access","id":2786,"accessor":{"ref":1258},"variable":{"ref":1219}},{"FM3":"FamixTypeScript.Access","id":2787,"accessor":{"ref":1262},"variable":{"ref":1219}},{"FM3":"FamixTypeScript.Access","id":2788,"accessor":{"ref":1266},"variable":{"ref":1219}},{"FM3":"FamixTypeScript.Access","id":2789,"accessor":{"ref":1276},"variable":{"ref":1219}},{"FM3":"FamixTypeScript.Access","id":2790,"accessor":{"ref":1236},"variable":{"ref":1221}},{"FM3":"FamixTypeScript.Access","id":2791,"accessor":{"ref":1236},"variable":{"ref":1223}},{"FM3":"FamixTypeScript.Access","id":2792,"accessor":{"ref":1266},"variable":{"ref":1223}},{"FM3":"FamixTypeScript.Access","id":2793,"accessor":{"ref":1276},"variable":{"ref":1223}},{"FM3":"FamixTypeScript.Access","id":2794,"accessor":{"ref":1236},"variable":{"ref":1225}},{"FM3":"FamixTypeScript.Access","id":2795,"accessor":{"ref":1266},"variable":{"ref":1227}},{"FM3":"FamixTypeScript.Access","id":2796,"accessor":{"ref":1266},"variable":{"ref":1229}},{"FM3":"FamixTypeScript.Access","id":2797,"accessor":{"ref":1266},"variable":{"ref":1231}},{"FM3":"FamixTypeScript.Access","id":2798,"accessor":{"ref":1262},"variable":{"ref":1233}},{"FM3":"FamixTypeScript.Access","id":2799,"accessor":{"ref":1236},"variable":{"ref":1235}},{"FM3":"FamixTypeScript.Access","id":2800,"accessor":{"ref":1262},"variable":{"ref":1235}},{"FM3":"FamixTypeScript.Access","id":2801,"accessor":{"ref":1266},"variable":{"ref":1235}},{"FM3":"FamixTypeScript.Access","id":2802,"accessor":{"ref":1276},"variable":{"ref":1235}},{"FM3":"FamixTypeScript.Access","id":2803,"accessor":{"ref":1236},"variable":{"ref":1239}},{"FM3":"FamixTypeScript.Access","id":2804,"accessor":{"ref":1236},"variable":{"ref":1243}},{"FM3":"FamixTypeScript.Access","id":2805,"accessor":{"ref":1254},"variable":{"ref":1257}},{"FM3":"FamixTypeScript.Access","id":2806,"accessor":{"ref":1258},"variable":{"ref":1261}},{"FM3":"FamixTypeScript.Access","id":2807,"accessor":{"ref":1266},"variable":{"ref":1271}},{"FM3":"FamixTypeScript.Access","id":2808,"accessor":{"ref":1266},"variable":{"ref":1275}},{"FM3":"FamixTypeScript.Access","id":2809,"accessor":{"ref":1276},"variable":{"ref":1279}},{"FM3":"FamixTypeScript.Access","id":2810,"accessor":{"ref":1276},"variable":{"ref":1285}},{"FM3":"FamixTypeScript.Access","id":2811,"accessor":{"ref":1276},"variable":{"ref":1289}},{"FM3":"FamixTypeScript.Access","id":2812,"accessor":{"ref":1236},"variable":{"ref":1295}},{"FM3":"FamixTypeScript.Access","id":2813,"accessor":{"ref":1236},"variable":{"ref":1299}},{"FM3":"FamixTypeScript.Access","id":2814,"accessor":{"ref":1262},"variable":{"ref":1299}},{"FM3":"FamixTypeScript.Access","id":2815,"accessor":{"ref":1236},"variable":{"ref":1303}},{"FM3":"FamixTypeScript.Access","id":2816,"accessor":{"ref":1266},"variable":{"ref":1303}},{"FM3":"FamixTypeScript.Access","id":2817,"accessor":{"ref":1276},"variable":{"ref":1303}},{"FM3":"FamixTypeScript.Access","id":2818,"accessor":{"ref":1236},"variable":{"ref":1307}},{"FM3":"FamixTypeScript.Access","id":2819,"accessor":{"ref":1262},"variable":{"ref":1307}},{"FM3":"FamixTypeScript.Access","id":2820,"accessor":{"ref":1236},"variable":{"ref":1311}},{"FM3":"FamixTypeScript.Access","id":2821,"accessor":{"ref":1236},"variable":{"ref":1317}},{"FM3":"FamixTypeScript.Access","id":2822,"accessor":{"ref":1266},"variable":{"ref":1331}},{"FM3":"FamixTypeScript.Access","id":2823,"accessor":{"ref":1266},"variable":{"ref":1335}},{"FM3":"FamixTypeScript.Access","id":2824,"accessor":{"ref":1276},"variable":{"ref":1341}},{"FM3":"FamixTypeScript.Access","id":2825,"accessor":{"ref":1276},"variable":{"ref":1345}},{"FM3":"FamixTypeScript.Access","id":2826,"accessor":{"ref":1366},"variable":{"ref":1353}},{"FM3":"FamixTypeScript.Access","id":2827,"accessor":{"ref":1374},"variable":{"ref":1353}},{"FM3":"FamixTypeScript.Access","id":2828,"accessor":{"ref":1380},"variable":{"ref":1353}},{"FM3":"FamixTypeScript.Access","id":2829,"accessor":{"ref":1388},"variable":{"ref":1353}},{"FM3":"FamixTypeScript.Access","id":2830,"accessor":{"ref":1366},"variable":{"ref":1357}},{"FM3":"FamixTypeScript.Access","id":2831,"accessor":{"ref":1388},"variable":{"ref":1357}},{"FM3":"FamixTypeScript.Access","id":2832,"accessor":{"ref":1374},"variable":{"ref":1359}},{"FM3":"FamixTypeScript.Access","id":2833,"accessor":{"ref":1388},"variable":{"ref":1361}},{"FM3":"FamixTypeScript.Access","id":2834,"accessor":{"ref":1388},"variable":{"ref":1363}},{"FM3":"FamixTypeScript.Access","id":2835,"accessor":{"ref":1366},"variable":{"ref":1365}},{"FM3":"FamixTypeScript.Access","id":2836,"accessor":{"ref":1388},"variable":{"ref":1365}},{"FM3":"FamixTypeScript.Access","id":2837,"accessor":{"ref":1374},"variable":{"ref":1377}},{"FM3":"FamixTypeScript.Access","id":2838,"accessor":{"ref":1380},"variable":{"ref":1383}},{"FM3":"FamixTypeScript.Access","id":2839,"accessor":{"ref":1380},"variable":{"ref":1387}},{"FM3":"FamixTypeScript.Access","id":2840,"accessor":{"ref":1388},"variable":{"ref":1393}},{"FM3":"FamixTypeScript.Access","id":2841,"accessor":{"ref":1388},"variable":{"ref":1397}},{"FM3":"FamixTypeScript.Access","id":2842,"accessor":{"ref":1366},"variable":{"ref":1403}},{"FM3":"FamixTypeScript.Access","id":2843,"accessor":{"ref":1388},"variable":{"ref":1403}},{"FM3":"FamixTypeScript.Access","id":2844,"accessor":{"ref":1366},"variable":{"ref":1407}},{"FM3":"FamixTypeScript.Access","id":2845,"accessor":{"ref":1366},"variable":{"ref":1411}},{"FM3":"FamixTypeScript.Access","id":2846,"accessor":{"ref":1388},"variable":{"ref":1411}},{"FM3":"FamixTypeScript.Access","id":2847,"accessor":{"ref":1366},"variable":{"ref":1415}},{"FM3":"FamixTypeScript.Access","id":2848,"accessor":{"ref":1380},"variable":{"ref":1433}},{"FM3":"FamixTypeScript.Access","id":2849,"accessor":{"ref":1388},"variable":{"ref":1437}},{"FM3":"FamixTypeScript.Access","id":2850,"accessor":{"ref":1388},"variable":{"ref":1441}},{"FM3":"FamixTypeScript.Access","id":2851,"accessor":{"ref":1458},"variable":{"ref":1449}},{"FM3":"FamixTypeScript.Access","id":2852,"accessor":{"ref":1468},"variable":{"ref":1449}},{"FM3":"FamixTypeScript.Access","id":2853,"accessor":{"ref":1468},"variable":{"ref":1451}},{"FM3":"FamixTypeScript.Access","id":2854,"accessor":{"ref":1458},"variable":{"ref":1457}},{"FM3":"FamixTypeScript.Access","id":2855,"accessor":{"ref":1458},"variable":{"ref":1463}},{"FM3":"FamixTypeScript.Access","id":2856,"accessor":{"ref":1458},"variable":{"ref":1467}},{"FM3":"FamixTypeScript.Access","id":2857,"accessor":{"ref":1468},"variable":{"ref":1471}},{"FM3":"FamixTypeScript.Access","id":2858,"accessor":{"ref":1468},"variable":{"ref":1475}},{"FM3":"FamixTypeScript.Access","id":2859,"accessor":{"ref":1468},"variable":{"ref":1481}},{"FM3":"FamixTypeScript.Access","id":2860,"accessor":{"ref":1458},"variable":{"ref":1485}},{"FM3":"FamixTypeScript.Access","id":2861,"accessor":{"ref":1458},"variable":{"ref":1493}},{"FM3":"FamixTypeScript.Access","id":2862,"accessor":{"ref":1458},"variable":{"ref":1497}},{"FM3":"FamixTypeScript.Access","id":2863,"accessor":{"ref":1510},"variable":{"ref":1505}},{"FM3":"FamixTypeScript.Access","id":2864,"accessor":{"ref":1530},"variable":{"ref":1505}},{"FM3":"FamixTypeScript.Access","id":2865,"accessor":{"ref":1510},"variable":{"ref":1507}},{"FM3":"FamixTypeScript.Access","id":2866,"accessor":{"ref":1510},"variable":{"ref":1509}},{"FM3":"FamixTypeScript.Access","id":2867,"accessor":{"ref":1510},"variable":{"ref":1515}},{"FM3":"FamixTypeScript.Access","id":2868,"accessor":{"ref":1510},"variable":{"ref":1523}},{"FM3":"FamixTypeScript.Access","id":2869,"accessor":{"ref":1530},"variable":{"ref":1533}},{"FM3":"FamixTypeScript.Access","id":2870,"accessor":{"ref":1510},"variable":{"ref":1539}},{"FM3":"FamixTypeScript.Access","id":2871,"accessor":{"ref":1510},"variable":{"ref":1543}},{"FM3":"FamixTypeScript.Access","id":2872,"accessor":{"ref":1510},"variable":{"ref":1547}},{"FM3":"FamixTypeScript.Access","id":2873,"accessor":{"ref":1510},"variable":{"ref":1551}},{"FM3":"FamixTypeScript.Access","id":2874,"accessor":{"ref":1510},"variable":{"ref":1557}},{"FM3":"FamixTypeScript.Access","id":2875,"accessor":{"ref":1510},"variable":{"ref":1565}},{"FM3":"FamixTypeScript.Invocation","id":2876,"candidates":[{"ref":27}],"receiver":{"ref":19},"sender":{"ref":19},"signature":"export function initAuth(jwtService: JwtService, userService: UserService)"},{"FM3":"FamixTypeScript.Invocation","id":2877,"candidates":[{"ref":500}],"receiver":{"ref":497},"sender":{"ref":19},"signature":"getToken(): string"},{"FM3":"FamixTypeScript.Invocation","id":2878,"candidates":[{"ref":502}],"receiver":{"ref":497},"sender":{"ref":568},"signature":"saveToken(token: string): void"},{"FM3":"FamixTypeScript.Invocation","id":2879,"candidates":[{"ref":506}],"receiver":{"ref":497},"sender":{"ref":572},"signature":"destroyToken(): void"},{"FM3":"FamixTypeScript.Invocation","id":2880,"candidates":[{"ref":520}],"receiver":{"ref":511},"sender":{"ref":146},"signature":"login(credentials:"},{"FM3":"FamixTypeScript.Invocation","id":2881,"candidates":[{"ref":536}],"receiver":{"ref":511},"sender":{"ref":146},"signature":"register(credentials:"},{"FM3":"FamixTypeScript.Invocation","id":2882,"candidates":[{"ref":546}],"receiver":{"ref":511},"sender":{"ref":408},"signature":"logout(): void"},{"FM3":"FamixTypeScript.Invocation","id":2883,"candidates":[{"ref":548}],"receiver":{"ref":511},"sender":{"ref":406},"signature":"getCurrentUser(): Observable<"},{"FM3":"FamixTypeScript.Invocation","id":2884,"candidates":[{"ref":548}],"receiver":{"ref":511},"sender":{"ref":1366},"signature":"getCurrentUser(): Observable<"},{"FM3":"FamixTypeScript.Invocation","id":2885,"candidates":[{"ref":548}],"receiver":{"ref":511},"sender":{"ref":19},"signature":"getCurrentUser(): Observable<"},{"FM3":"FamixTypeScript.Invocation","id":2886,"candidates":[{"ref":556}],"receiver":{"ref":511},"sender":{"ref":410},"signature":"update(user: Partial<User>): Observable<"},{"FM3":"FamixTypeScript.Invocation","id":2887,"candidates":[{"ref":568}],"receiver":{"ref":511},"sender":{"ref":520},"signature":"setAuth(user: User): void"},{"FM3":"FamixTypeScript.Invocation","id":2888,"candidates":[{"ref":568}],"receiver":{"ref":511},"sender":{"ref":536},"signature":"setAuth(user: User): void"},{"FM3":"FamixTypeScript.Invocation","id":2889,"candidates":[{"ref":568}],"receiver":{"ref":511},"sender":{"ref":548},"signature":"setAuth(user: User): void"},{"FM3":"FamixTypeScript.Invocation","id":2890,"candidates":[{"ref":568}],"receiver":{"ref":511},"sender":{"ref":568},"signature":"setAuth(user: User): void"},{"FM3":"FamixTypeScript.Invocation","id":2891,"candidates":[{"ref":572}],"receiver":{"ref":511},"sender":{"ref":546},"signature":"purgeAuth(): void"},{"FM3":"FamixTypeScript.Invocation","id":2892,"candidates":[{"ref":572}],"receiver":{"ref":511},"sender":{"ref":548},"signature":"purgeAuth(): void"},{"FM3":"FamixTypeScript.Invocation","id":2893,"candidates":[{"ref":572}],"receiver":{"ref":511},"sender":{"ref":572},"signature":"purgeAuth(): void"},{"FM3":"FamixTypeScript.Invocation","id":2894,"candidates":[{"ref":674}],"receiver":{"ref":639},"sender":{"ref":702},"signature":"runQuery()"},{"FM3":"FamixTypeScript.Invocation","id":2895,"candidates":[{"ref":674}],"receiver":{"ref":639},"sender":{"ref":670},"signature":"runQuery()"},{"FM3":"FamixTypeScript.Invocation","id":2896,"candidates":[{"ref":674}],"receiver":{"ref":639},"sender":{"ref":674},"signature":"runQuery()"},{"FM3":"FamixTypeScript.Invocation","id":2897,"candidates":[{"ref":856}],"receiver":{"ref":853},"sender":{"ref":674},"signature":"query(\n config: ArticleListConfig,\n ): Observable<"},{"FM3":"FamixTypeScript.Invocation","id":2898,"candidates":[{"ref":872}],"receiver":{"ref":853},"sender":{"ref":1366},"signature":"get(slug: string): Observable<Article>"},{"FM3":"FamixTypeScript.Invocation","id":2899,"candidates":[{"ref":872}],"receiver":{"ref":853},"sender":{"ref":1236},"signature":"get(slug: string): Observable<Article>"},{"FM3":"FamixTypeScript.Invocation","id":2900,"candidates":[{"ref":882}],"receiver":{"ref":853},"sender":{"ref":1262},"signature":"delete(slug: string): Observable<void>"},{"FM3":"FamixTypeScript.Invocation","id":2901,"candidates":[{"ref":888}],"receiver":{"ref":853},"sender":{"ref":1388},"signature":"create(article: Partial<Article>): Observable<Article>"},{"FM3":"FamixTypeScript.Invocation","id":2902,"candidates":[{"ref":906}],"receiver":{"ref":853},"sender":{"ref":768},"signature":"favorite(slug: string): Observable<Article>"},{"FM3":"FamixTypeScript.Invocation","id":2903,"candidates":[{"ref":914}],"receiver":{"ref":853},"sender":{"ref":768},"signature":"unfavorite(slug: string): Observable<void>"},{"FM3":"FamixTypeScript.Invocation","id":2904,"candidates":[{"ref":950}],"receiver":{"ref":947},"sender":{"ref":1236},"signature":"getAll(slug: string): Observable<Comment[]>"},{"FM3":"FamixTypeScript.Invocation","id":2905,"candidates":[{"ref":962}],"receiver":{"ref":947},"sender":{"ref":1266},"signature":"add(slug: string, payload: string): Observable<Comment>"},{"FM3":"FamixTypeScript.Invocation","id":2906,"candidates":[{"ref":974}],"receiver":{"ref":947},"sender":{"ref":1276},"signature":"delete(commentId: string, slug: string): Observable<void>"},{"FM3":"FamixTypeScript.Invocation","id":2907,"candidates":[{"ref":1166}],"receiver":{"ref":1163},"sender":{"ref":1510},"signature":"get(username: string): Observable<Profile>"},{"FM3":"FamixTypeScript.Invocation","id":2908,"candidates":[{"ref":1166}],"receiver":{"ref":1163},"sender":{"ref":1092},"signature":"get(username: string): Observable<Profile>"},{"FM3":"FamixTypeScript.Invocation","id":2909,"candidates":[{"ref":1166}],"receiver":{"ref":1163},"sender":{"ref":1126},"signature":"get(username: string): Observable<Profile>"},{"FM3":"FamixTypeScript.Invocation","id":2910,"candidates":[{"ref":1178}],"receiver":{"ref":1163},"sender":{"ref":1040},"signature":"follow(username: string): Observable<Profile>"},{"FM3":"FamixTypeScript.Invocation","id":2911,"candidates":[{"ref":1186}],"receiver":{"ref":1163},"sender":{"ref":1040},"signature":"unfollow(username: string): Observable<Profile>"},{"FM3":"FamixTypeScript.Invocation","id":2912,"candidates":[{"ref":1374}],"receiver":{"ref":1349},"sender":{"ref":1388},"signature":"addTag()"},{"FM3":"FamixTypeScript.Invocation","id":2913,"candidates":[{"ref":1468}],"receiver":{"ref":1445},"sender":{"ref":1458},"signature":"setListTo(type: string = \"\", filters: Object ="},{"FM3":"FamixTypeScript.Invocation","id":2914,"candidates":[{"ref":1468}],"receiver":{"ref":1445},"sender":{"ref":1458},"signature":"setListTo(type: string = \"\", filters: Object ="},{"FM3":"FamixTypeScript.Invocation","id":2915,"candidates":[{"ref":1468}],"receiver":{"ref":1445},"sender":{"ref":1468},"signature":"setListTo(type: string = \"\", filters: Object ="},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2916,"element":{"ref":2917},"startPos":881,"endPos":887,"fileName":"src/app/core/auth/auth.component.ts"},{"FM3":"FamixTypeScript.Interface","id":2917,"isStub":true,"sourceAnchor":{"ref":2916},"comments":[],"incomingImports":[],"name":"OnInit","decorators":[],"types":[],"functions":[],"localVariables":[],"incomingReferences":[],"attributes":[],"methods":[],"superInheritances":[],"subInheritances":[{"ref":2918}]},{"FM3":"FamixTypeScript.Inheritance","id":2918,"superclass":{"ref":2917},"subclass":{"ref":119}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2919,"element":{"ref":2920},"startPos":367,"endPos":373,"fileName":"src/app/core/auth/if-authenticated.directive.ts"},{"FM3":"FamixTypeScript.Interface","id":2920,"isStub":true,"sourceAnchor":{"ref":2919},"comments":[],"incomingImports":[],"name":"OnInit","decorators":[],"types":[],"functions":[],"localVariables":[],"incomingReferences":[],"attributes":[],"methods":[],"superInheritances":[],"subInheritances":[{"ref":2921}]},{"FM3":"FamixTypeScript.Inheritance","id":2921,"superclass":{"ref":2920},"subclass":{"ref":199}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2922,"element":{"ref":2923},"startPos":941,"endPos":947,"fileName":"src/app/features/settings/settings.component.ts"},{"FM3":"FamixTypeScript.Interface","id":2923,"isStub":true,"sourceAnchor":{"ref":2922},"comments":[],"incomingImports":[],"name":"OnInit","decorators":[],"types":[],"functions":[],"localVariables":[],"incomingReferences":[],"attributes":[],"methods":[],"superInheritances":[],"subInheritances":[{"ref":2924}]},{"FM3":"FamixTypeScript.Inheritance","id":2924,"superclass":{"ref":2923},"subclass":{"ref":389}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2925,"element":{"ref":2926},"startPos":226,"endPos":239,"fileName":"src/app/shared/pipes/markdown.pipe.ts"},{"FM3":"FamixTypeScript.Interface","id":2926,"isStub":true,"sourceAnchor":{"ref":2925},"comments":[],"incomingImports":[],"name":"PipeTransform","decorators":[],"types":[],"functions":[],"localVariables":[],"incomingReferences":[],"attributes":[],"methods":[],"superInheritances":[],"subInheritances":[{"ref":2927}]},{"FM3":"FamixTypeScript.Inheritance","id":2927,"superclass":{"ref":2926},"subclass":{"ref":481}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2928,"element":{"ref":2929},"startPos":712,"endPos":718,"fileName":"src/app/features/profile/components/profile-articles.component.ts"},{"FM3":"FamixTypeScript.Interface","id":2929,"isStub":true,"sourceAnchor":{"ref":2928},"comments":[],"incomingImports":[],"name":"OnInit","decorators":[],"types":[],"functions":[],"localVariables":[],"incomingReferences":[],"attributes":[],"methods":[],"superInheritances":[],"subInheritances":[{"ref":2930}]},{"FM3":"FamixTypeScript.Inheritance","id":2930,"superclass":{"ref":2929},"subclass":{"ref":1083}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2931,"element":{"ref":2932},"startPos":715,"endPos":721,"fileName":"src/app/features/profile/components/profile-favorites.component.ts"},{"FM3":"FamixTypeScript.Interface","id":2932,"isStub":true,"sourceAnchor":{"ref":2931},"comments":[],"incomingImports":[],"name":"OnInit","decorators":[],"types":[],"functions":[],"localVariables":[],"incomingReferences":[],"attributes":[],"methods":[],"superInheritances":[],"subInheritances":[{"ref":2933}]},{"FM3":"FamixTypeScript.Inheritance","id":2933,"superclass":{"ref":2932},"subclass":{"ref":1117}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2934,"element":{"ref":2935},"startPos":2025,"endPos":2031,"fileName":"src/app/features/article/pages/article/article.component.ts"},{"FM3":"FamixTypeScript.Interface","id":2935,"isStub":true,"sourceAnchor":{"ref":2934},"comments":[],"incomingImports":[],"name":"OnInit","decorators":[],"types":[],"functions":[],"localVariables":[],"incomingReferences":[],"attributes":[],"methods":[],"superInheritances":[],"subInheritances":[{"ref":2936}]},{"FM3":"FamixTypeScript.Inheritance","id":2936,"superclass":{"ref":2935},"subclass":{"ref":1215}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2937,"element":{"ref":2938},"startPos":1021,"endPos":1027,"fileName":"src/app/features/article/pages/editor/editor.component.ts"},{"FM3":"FamixTypeScript.Interface","id":2938,"isStub":true,"sourceAnchor":{"ref":2937},"comments":[],"incomingImports":[],"name":"OnInit","decorators":[],"types":[],"functions":[],"localVariables":[],"incomingReferences":[],"attributes":[],"methods":[],"superInheritances":[],"subInheritances":[{"ref":2939}]},{"FM3":"FamixTypeScript.Inheritance","id":2939,"superclass":{"ref":2938},"subclass":{"ref":1349}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2940,"element":{"ref":2941},"startPos":1030,"endPos":1036,"fileName":"src/app/features/article/pages/home/home.component.ts"},{"FM3":"FamixTypeScript.Interface","id":2941,"isStub":true,"sourceAnchor":{"ref":2940},"comments":[],"incomingImports":[],"name":"OnInit","decorators":[],"types":[],"functions":[],"localVariables":[],"incomingReferences":[],"attributes":[],"methods":[],"superInheritances":[],"subInheritances":[{"ref":2942}]},{"FM3":"FamixTypeScript.Inheritance","id":2942,"superclass":{"ref":2941},"subclass":{"ref":1445}},{"FM3":"FamixTypeScript.IndexedFileAnchor","id":2943,"element":{"ref":2944},"startPos":993,"endPos":999,"fileName":"src/app/features/profile/pages/profile/profile.component.ts"},{"FM3":"FamixTypeScript.Interface","id":2944,"isStub":true,"sourceAnchor":{"ref":2943},"comments":[],"incomingImports":[],"name":"OnInit","decorators":[],"types":[],"functions":[],"localVariables":[],"incomingReferences":[],"attributes":[],"methods":[],"superInheritances":[],"subInheritances":[{"ref":2945}]},{"FM3":"FamixTypeScript.Inheritance","id":2945,"superclass":{"ref":2944},"subclass":{"ref":1501}}]
|