Replies: 4 comments
-
Dont know how to put labels :/ |
Beta Was this translation helpful? Give feedback.
-
Hi @testgita, Thanks for your question. I've asked our CodeQL JS experts to take a look. |
Beta Was this translation helpful? Give feedback.
-
@adityasharad any chance you can help with this? |
Beta Was this translation helpful? Give feedback.
-
So after looking this a bit more, and from my potentially inadequate perspective, it looks like most of the classes I have looked at, for example InjectableFunction (could be ControllerDefinition or anything actually) are not considered valid if they are not connected to an angular module call at their "base"(possibly correct term but not sure), which makes the library classes uncustomizable/rigid for alternative, valid and perfectly legal usage of AngularJS, which loses the meaning of modularizing logic and shipping it in a library -- I verified by modifying my source code examples appropriately (if anyone is interested I can provide examples):
NOTE: AngularJS is an old framework, but there are a TON of web apps out there using it, just noting :) |
Beta Was this translation helpful? Give feedback.
-
All classes seem to be based on angular.module calls but ignores references to the returned instance stored in a variable.
Example of perfectly valid code:
Example queries:
angular.controller
orangular.factory
AngularJS calls for example -- could be either an array with a function as the last element or just a plain function):I should be getting all the definitions but everything seems to be based on
angular.*
"direct" references instead of general classes that i could then rebase on whatever I need to.Am I missing something?
The way I am trying to solve this(except trying to read all the AngularJS CodeQL library 🤯 ), is manually matching expressions and then attempting to "lift"(dunno if its the correct context) into whatever AngularJS construct I want to, for example
DependencyInjection
orAngularJS::InjectableFunction
Then I started copying code out of the relevant parts of the AngularJS CodeQL libraries for figuring how to use those classes from the references I want to. Which hurt my brain. Which made me think I must be doing something wrong 🤷
I'm thinking I have to either extend the classes to match the structures defined in the code with the module reference I want to, which I cant really wrap my head around, ANY hints would be lovely ( 💋 )
OR
I am missing something terrible, so please relieve me from my misery
OR
That's a bug in the logic of the library
KINDLY HELP
Beta Was this translation helpful? Give feedback.
All reactions