The code-inspection tag has no wiki summary.
-1
votes
1answer
55 views
Find all function calls by a function
What is the best way to find all function calls that a function makes? I want to do this at runtime (likely with a decorator).
Is the best way to retrieve the source code with inspect (this means ...
0
votes
2answers
75 views
Difference between “var objectName= new SomeObject()” and “interfaceName objectName= new SomeObject()”
I was doing some code analysis via code inspections from resharper and i got the next warning:
Only implementations of property 'propertyname' are used
This warning i have on my interface, if I ...
0
votes
1answer
42 views
Problems importing inspecion profile with IntelliJ IDEA
I want to import an inspection profile to my IntelliJ IDEA project.
I have tried the following: click on the inspector icon (down-right corner of the window) -> configure inspections -> import -> ...
-1
votes
1answer
55 views
Which is the best code inspector? [closed]
I recently knew that jenkins is not a code inspector. So can someone help me and tell me which is the best code inspector ? For java, visual basic etc..
0
votes
0answers
65 views
IntelliJ IDEA code inspection highlighting faulty visibility errors
So, I've got this problem - a strange problem. I have a library as part of an IDEA project - in which all the code is publicly visible under 'tk.*' (IE: all classes exist in sub-packages of tk). ...
2
votes
1answer
50 views
Is it a good practice to use the [Obsolete] attribute to instruct developers no to use parts of an API
Recently I have been writing some serializable object that also deals with specific logic and has specific life-cycle. In order for it to work properly, it has to be instantiated with an appropriate ...
0
votes
1answer
175 views
Inspect element Rulers in Firefox
I want to know is there any way to view Rulers in Firefox, alike Chrome inspect element rulers.
Chrome shows your current width, ie. Width + padding = current width on Ruler hover.
see below Chrome ...
0
votes
0answers
34 views
Find nested classes at compile time in codebase
I'm upgrading my Java app to hibernate 4, and found out that we have some nested transcriptional statements (which is bad to begin with, and should be fixed). Hibernate throws exceptions when we ...
6
votes
2answers
160 views
Detecting empty function definitions in python
I need to detect whether a function is an empty definition or not. It can be like:
def foo():
pass
or like:
def foo(i, *arg, **kwargs):
pass
or like:
foo = lambda x: None
What is the ...
1
vote
1answer
113 views
different stylecop rules for test projects
I work with stylecop and find it very helpful. However i would like a different set of rules for my test projects than my normal c# class libraries.
Is this possible?
For example, I don't want my ...
0
votes
2answers
73 views
How to use Chrome inspector console
on this page there is a button with a jQuery effect. I want to speed up the animation and see how it will look like. So I opened up the inspector and notices there is a fade effect with 500 speed. I ...
0
votes
1answer
145 views
PhpStorm open external file in project with inspection and highlighting
This might be a minor issue, but I often have to fight with it.
I have many files without extension outside my project folder and I want to open these files as PHP files. Meaning the indentation, ...
1
vote
0answers
102 views
How do I disable JavaDoc code inspection for getters/setters in IntelliJ IDEA 11?
In our project properties (getters/setters) are already quite self-descriptive so we don't see the reason to add JavaDoc for those.
So I was wondering: Is it possible to disable JavaDoc check (code ...
0
votes
1answer
138 views
AppCode: unused statement in .h file
AppCode is great utility for refactoring and review code. Last time I use Code Inspector in menu: 'Code -> Code Inspect...', but this code inspector have some troubles.
General trouble, when code ...
1
vote
3answers
97 views
Best Firefox/Chrome Plugin to view source?
I find myself seeing things like buttons, inputs, header, ect. and wanting the code so I can reference off them and make my elementary designs look better. I always try to change it up a bit, I don't ...
0
votes
4answers
218 views
XmlReader skipping some blocks
I have an xml structured like this:
Header
\-Timeseries (1-N)
\- Period (1-N)
\- Interval (1-N)
This is an approximate example:
<Header>
<Element />
...
1
vote
3answers
97 views
How does relying on type inference affect code maintainability?
Although the examples in this question are in Visual Basic.NET and Java, it's possible that the topic may also apply to other languages that implement type inference.
Up until now, I've only used ...
0
votes
1answer
118 views
Using wildcard for custom HTML tags in Rubymine
I'm developing a lot of RadiantCMS applications, and this CMS uses custom radiant tags which are translated to content and html at runtime. So, my HTML templates have a markup like this:
<body>
...
1
vote
1answer
121 views
How to read programmatically the DOM generated by Javascript?
I can inspect any Javascript-generated DOM by using Firebug or another debugger. Firebug also allows me to interactively copy the generated innerHTML of any element onto the Clipboard such that I can ...
1
vote
2answers
601 views
using python inspect to view local variables in a function
I can't figure out how to inspect a currently executing function using inspect / inspect_shell
I'm guessing it involves walking the frame hierarchy using getinnerframe and getouterframe, but I'm ...
4
votes
1answer
248 views
Python Object Inspector GUI
What I would like is a handy GUI to inspect objects. The dir() function just isn't enough sometimes!
What would happen would I would type view_object(module) and it would give me a GUI window that ...
0
votes
1answer
39 views
Is there any tools for me to inspect which code is being ran?
I wanna to play around the HP webOS, and doing something system level modification. As you may know that the webOS can inspect the source code, and digging inside the system with something like WebOS ...
18
votes
1answer
3k views
How to use IntelliJ IDEA to find all unused code?
I have been a happy IntelliJ IDEA user for a long time but I have this question. When I am in a .java file, the unused code is usually grayed out or has a green underline saying this code will ...
13
votes
1answer
357 views
Code inspection says I need to dispose object. Which one?
This is my function. I already wrapped both client and message into using clause and still get error when run code inspection. Error points to first using line:
public static void Send(MailItem mail)
...
2
votes
1answer
62 views
Method to automatically detect cases of incorrect find_first_of() and family
I am working on a software project and have found numerous examples where find_first_of(), find_first_not_of(), find_last_of(), and find_last_not_of() are incorrectly used. These std::string methods ...
0
votes
1answer
67 views
Couple of questions regarding Nant
It seems I can't get enough of you lovely people.
I'm wondering about a couple of things about Nant:
Can I test an execution of an .exe by using a nant script and then have it terminate immediately ...
5
votes
2answers
186 views
how to integrate TODO handling into the maven test phase?
suppose i have a project with lots of todos, some unintentionally left there, some no longer relevant, some represent future possible features etc.
i know that most IDEs can show/filter/sort them, ...
2
votes
5answers
2k views
Writing a Javascript library that is code-completion and code-inspection friendly
I recently made my own Javascript library and I initially used the following pattern:
var myLibrary = (function () {
var someProp = "...";
function someFunc() {
...
}
function ...
7
votes
1answer
691 views
Inspect S4 methods
How can I view the definition of a S4 function? For instance, I would like to see the definition of TSconnect in package TSdbi. The command
showMethods("TSconnect")
reveals that there is, among ...
0
votes
2answers
411 views
Why doesn't inspect.getsource return the whole class source?
I have this code in my forms.py:
from django import forms
from formfieldset.forms import FieldsetMixin
class ContactForm(forms.Form, FieldsetMixin):
full_name = forms.CharField(max_length=120)
...
1
vote
7answers
2k views
What is the difference between code reviews and code inspections?
I'm trying to understand the difference between the two. Any help would be greatly appreciated.
Potential duplicate: http://stackoverflow.com/questions/52598/code-walkthrough-vs-code-review
