Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
1answer
168 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) ...
8
votes
1answer
214 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 ...
5
votes
2answers
97 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, ...
5
votes
1answer
230 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 ...
2
votes
1answer
63 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 ...
2
votes
1answer
44 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 ...
2
votes
5answers
1k 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 ...
2
votes
8answers
937 views

What kinds of things do you look for when reviewing someone else's code before a code review/inspection? [closed]

Do you look for anything in particular, or just read the code carefully and just find what you find?
1
vote
7answers
1k 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
0
votes
1answer
61 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 ...
0
votes
1answer
46 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 ...
0
votes
1answer
34 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 ...
0
votes
1answer
57 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 ...
0
votes
2answers
278 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) ...