Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
5answers
271 views

math syntax checker written in python

All I need is to check, using python, if a string is a valid math expression or not. For simplicity let's say I just need + - * / operators (+ - as unary too) with numbers and nested parenthesis. I ...
8
votes
4answers
613 views

How can I check the syntax of Python script without executing it?

I usually use Perl's -c switch to check the syntax of the program and then exit without executing it. Is there an equivalent way to do this for a python script?
6
votes
1answer
88 views

PHP Syntax checking pre-source control

Referring to Is there a static code analyzer [like Lint] for PHP files? -- I am looking at how to assess the content of PHP files before they are committed by developers. Whichever solution(s) are ...
6
votes
3answers
125 views

How to check syntax of ruby script that has script/runner as a shebang?

I have problems to check syntax of ruby scripts that has rails script/runner on its shebang. Here are two example scripts and how they responses to ruby syntax checking: Script hello_world_runner.rb: ...
6
votes
7answers
627 views

How to write a linter?

In my day job I, and others on my team write a lot of hardware models in Verilog-AMS, a language supported primarily by commercial vendors and a few opensource simulator projects. One thing that ...
5
votes
3answers
189 views

Can Visual Studio target earlier C# syntax in addition to earlier .NET framework versions?

The easy part: Targeting the .NET 2.0 framework in a Visual Studio 2010 project using the dropdown. The hard part: Is it possible to target a specific syntax version - for example var s = "hello ...
5
votes
2answers
498 views

Is it possible to check PHP file syntax from PHP?

I load dynamically PHP class files with autoload. And those files could be missing or corrupted by some reason. Autoload will successfully report missing files so application logic could handle that. ...
4
votes
3answers
136 views

Are there any AWK syntax checkers?

Are there any AWK syntax checkers? I'm interested in both minimal checkers that only flag syntax errors and more extensive checkers along the lines of lint. It should be a static checker only, not ...
4
votes
5answers
1k views

Compile (but do not run) a Python script [closed]

Possible Duplicate: How can I check the syntax of Python script without executing it? How do I compile a Python script without running it? I just want to check the script for syntax ...
4
votes
1answer
2k views

Can't get “Syntastic” vim plugin to work

I've installed Syntastic plugin in vim. I can't get it to work. I've tried :SyntasticEnable but no luck. SyntasticEnable python in my vimrc doesn't work either (in fact, it doesn't even parse the ...
4
votes
5answers
884 views

Testing Powershell scripts for correctness

Is their anyway to test the correctness of a powershell script without executing it. I know you could do something similar in unix, but can't find the equiv for powershell. Essentially what I have ...
3
votes
3answers
138 views

Syntax / Logical checker In Javascript?

I'm building a solution for a client which allows them to create very basic code, now i've done some basic syntax validation but I'm stuck at variable verification. I know JSLint does this using ...
3
votes
2answers
341 views

How can I check (My)SQL statements for syntactical correctness

we're currently setting up out integration server and during that process we've set up pre-commit hooks on the SVN so that our developers can't check in files that are syntactically invalid (primarily ...
3
votes
3answers
214 views

Alternative to system('php -l')?

In a project I'm currently working for, we're considering putting system() into php.ini's disable_functions declaration. Now, one meta-module of ours which would ultimately also fall victim to this ...
3
votes
1answer
62 views

Why aren't both versions of this code failing the -c Perl check?

The new method of Parse::RecDescent has this prototype: sub new ($$$) { # code goes here } and if I create an object like this: my $parser = Parse::RecDescent->new($grammar); it will ...
3
votes
5answers
1k views

Syntax Checking or “Compiling” a Ruby on Rails Application

I'm new to Ruby and recently ran into an issue comparing to values when creating a Ruby on Rails application. In a controller I had the following statement that always returned false: if (user.id != ...
2
votes
3answers
249 views

Parentheses pairing ({}[]()<>) problem. Python

I want to be able to pair up all parentheses in a string, if they aren't paired then then they get their index number and False. It seems like it is repeating some values over and over, i.e cl == ...
2
votes
2answers
177 views

javascript syntax check for Internet Explorer

Is there some tool that can syntax-check my JavaScript files to see if they contain syntax errors that would bother the Javascript engine of Internet Explorer, especially excess trailing commas? ...
2
votes
2answers
120 views

Need Java Editor Written in JavaScript

I am writing a an interface for a web application that requires a user to write a small blob of Java in a JavaScript text area. I would like to know if there exists an editor written in JavaScript ...
2
votes
1answer
191 views

Why doesn't 'haml --check' find this glaring syntax error

I was looking for rake tasks that would help me track down syntax errors, and I came across haml --check as a possible solution for double checking haml files. Unfortunately, when I passed it this ...
2
votes
1answer
351 views

static/compile time check for javascript with jquery?

I know javascript (or at least a version of it) can be compiled into .NET provided certain conditions are met. How can i do a compile time or static syntax check on javascript i am writing? The catch ...
2
votes
2answers
2k views

Javascript syntax check in eclipse

I am developing a RIA application w/ javascript in Eclipse. How can enable Javascript syntax checks in eclipse?
2
votes
1answer
2k views

How can I disable “HTML Checking” in NetBeans?

I'm using NetBean's Compile on Save setting, and it's really handy when I'm editing a single file. But when I'm dealing with a pair of (or more) class files and am switching between the files, I have ...
2
votes
2answers
612 views

Does anyone know of a syntax checker for classic ASP?

As part of my my web development system I have written a text editor witch (among other formats like CSS and HTML) has got ASP syntax highlighting. Does anyone know of an ASP syntax checker program ...
2
votes
3answers
201 views

Removing null warnings in Splint

I have been trying out Splint with a C program I recently wrote and trying to understand and remove the warnings it gives. One I understand but can't understand how to remove it comes from the ...
1
vote
6answers
236 views

php compiler or syntax checker

I'm looking for a php syntax checker, preferably as an eclipse plugin, preferably be able to sort of compile it(at least find undefined variables in addition to syntax checking. Does such thing ...
1
vote
2answers
822 views

PHP Syntax Checking in Notepad++

is there a plugin for notepad++ that allows for files to be run through a compiler for simple syntax checking? such as to catch missing ; or or non-matching brace counts, etc.?
1
vote
4answers
147 views

Flymake complains X is not available even when configured not to use X

Running the Flymake mode in a text-mode console Emacs session, how can I tell Flymake to display its messages in the text console instead of trying to communicate with X? Emacs 23 running on various ...
1
vote
1answer
189 views

Does any of the currently available editors support Ruby's hash colon?

In Ruby 1.9 hash = {:one => 1, :two => 2, :three => 3} is now written as: hash = { one: 1, two: 2, three: 3 } However neither the current version of TextMate (1.5.10 (1623)) ...
1
vote
2answers
620 views

cin.get() not working

I wrote this simple program today, but I found that cin.get() refuses to work unless there are 2 of them. Any ideas? #include <iostream> using namespace std; int main(){ int base; ...
1
vote
1answer
371 views

Eclipse CDT and ESQL syntax errors

I am using Eclipse CDT (Helios release) to edit the source code of an (old) C application, which also uses ESQL. In this project, by convention, files containing ESQL code have a .sc extension ...
1
vote
1answer
364 views

Javascript syntax checking within a JSP file not working

I'm using eclipse 3.5 with WTP 3.0 to develop a web app using JSP and Javascript etc. Sometimes I need to embed Javascript code directly into a JSP file eg. to use a string out of the resource bundle ...
1
vote
2answers
190 views

How do I check SQLite3 syntax?

Is there a way to check the syntax of a SQLite3 script without running it? Basically, I'm looking for the SQLite3 equivalent of ruby -c script.rb, perl -c script.pl, php --syntax-check script.php, ...
1
vote
2answers
455 views

Need Lex and Yacc program which does C syntax-checking

Anybody knows from where I can download a Lex and Yacc program(the source code) for complete syntax checking of a C program? Pls post the link as comment
1
vote
4answers
798 views

PHP Sanity Check

I am looking for applications or methods for performing sanity checks of php code. I hope to to avoid finding out about the coding mistakes the hard way, but instead find them before publishing the ...
1
vote
2answers
577 views

How can I add a project specific @INC module-path to Komodo without breaking syntax checking?

For a Perl porting project I am using ActiveState's Komodo IDE 5.1 For external reasons, the xyz.pm modules reside in a different directory tree. By adding a PERL5LIB=<> under the "environemt" tab ...
0
votes
1answer
61 views

syntax-check a VimL script

I have a sizable vim script (a .vim file, in viml syntax). I'd like to check (but not execute!) the file for simple syntax errors. How do I accomplish this? I just want a very rough syntax check. ...
0
votes
3answers
49 views

JavaScript syntax check with JavaScript?

How could a Commando like me check if inputed code is a valid JavaScript source using some JavaScript built-in methods (if any!) or in any other possible way!? (Something like a preparser found in ...
0
votes
1answer
65 views

Is there a better way to check a Python source for a syntax errors without external modules?

As the title says, is there a better way to check a Pyhton source for SyntaxError -s without the use of external modules ? I mean, in sense of a more pythonic style or a more performant way. def ...
0
votes
1answer
208 views

Recursive Descent Parsing in pascal syntax parser

I have got one question about writing recursive descent parsing for checking pascal grammar. I have got this code for example: a := c ; I see that a,c is variables. := and ; - is terminals. This ...
0
votes
1answer
181 views

AngelScript code parser - which way should I take?

I'm writing the AngelScript IDE. Now I'm making my own "intellisense" system. I need to parse script file and create tables of functions, variables with their nesting levels etc. Which way should I ...
0
votes
1answer
118 views

How do you setup eclipse so that it parses and underlines errors for C like it does for Java?

How do you setup eclipse so that it parses and underlines errors for C as you type like it does for Java?
0
votes
1answer
198 views

Configure Code Validation in Eclipse Galileo (3.5)?

In Eclipse Ganymede (3.4), you could navigate to: Window > Preferences > Validation ... and enable/disable various Validators. This feature seems to have disappeared in 3.5. Was this feature ...
0
votes
1answer
117 views

quotes issue (ruby)

any idea how I can pass correct argument to xpath? There must be something about how to use single/double quotes. When I use variable parser_xpath_identificator = ...
0
votes
3answers
703 views

JavaScript syntax checking and compression

Do you know a good syntax checker and compressor for JavaScript? We are currently using JSLINT as syntax checker and YUI for compression. Note we are using the library ExtJS for UI.
-1
votes
1answer
60 views

Determine the positivenes or negativeness of a generic statement

I want to know if a twit is positive or negative. For example: thesis: jonas brothers eat charcoal "Jonas Brothers are going to eat charcoal" >>> Positive "Jonas Brothers have nothing to do with ...