Syntax checking is the verification that a program's source code is technically correct according to the rules of that programming language.

learn more… | top users | synonyms

2
votes
1answer
66 views

Command line syntax checker for Racket / Scheme

I'm looking for a command-line tool to check the syntax of my Racket / PLT-Scheme code. The purpose of this is to build a syntax-checker for Syntastic Vim plugin. Has anybody heard of a way?
0
votes
1answer
33 views

vim syntax checking whitespace

I want configuring my .vimrc for do somes auto syntax checking. That is my problem, i want auto change somes syntax by another. I deal with the specific caracter in computer programation like = ; , . ...
7
votes
3answers
168 views

Checking C# Syntax from the Command Line

Does anyone know of a way in the Microsoft .NET framework to check the syntax, and only the syntax, of a given C# file? For a little background, what I am interested in doing is setting up syntastic ...
0
votes
0answers
45 views

how to use ftnchek on mac

I need to find the uninitialized variables in my fortran77 code. I have installed a fortran syntax checker ftnchek which is a static analyser for fortran 77. But i am unable to understand how to use ...
1
vote
0answers
203 views

Syntastic + Django

I just started developing on Django, and then I thought using the Syntastic syntax checker on it would be a good idea. The problem is that it complains about some things being wrong when, in fact, ...
4
votes
2answers
225 views

Get PHP Eclipse to run error checking on different file-types

In my project I have a series of *.tpl files that I would like Eclipse to interpret as PHP code. I have managed to get syntax highlighting to work properly for these files by adding a *.tpl entry in ...
0
votes
1answer
585 views

Syntastic working in Vim but not in gVim

I have Vim (7.3) installed on a Debian (testing), i recently switched to using gVim more than command line Vim (for the colorschemes and undercurl of misspelled words). Now I coded some Haskell and ...
1
vote
1answer
207 views

Is there any shell script and/or Makefile static code analyser?

Or how can I ensure reliability of my Makefiles/scripts? Update: by shell scripts I mean sh dialect (bash, zsh, whatever), by Makefiles I mean GNU make. I know, they are different beasts, but they ...
1
vote
3answers
178 views

Function for detecting quotes in Scheme code

I am trying to write a function that can check whether or not some input is a quotation for a syntax checker. I have the following code: (define is-quote-expression? (lambda (v) (equal? (car ...
2
votes
1answer
214 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. ...
33
votes
6answers
1k 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 ...
8
votes
3answers
2k 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: ...
4
votes
3answers
688 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 ...
1
vote
3answers
422 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
87 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 ...
2
votes
3answers
902 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
6answers
1k 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 ...
2
votes
2answers
2k 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
516 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 ...
-1
votes
1answer
91 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 ...
2
votes
2answers
2k 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.?
2
votes
4answers
307 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 ...
0
votes
1answer
478 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 ...
1
vote
1answer
332 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)) ...
5
votes
3answers
392 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 ...
8
votes
5answers
378 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 ...
0
votes
1answer
434 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 ...
2
votes
1answer
407 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 ...
0
votes
1answer
188 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?
3
votes
3answers
279 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 ...
18
votes
4answers
12k views

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

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 ...
2
votes
1answer
675 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 ...
37
votes
3answers
6k 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?
5
votes
3answers
2k 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
558 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 ...
2
votes
2answers
3k 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; ...
0
votes
1answer
437 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 ...
3
votes
1answer
594 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 ...
11
votes
2answers
6k 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 ...
2
votes
1answer
786 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
382 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
712 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
5
votes
2answers
5k views

Javascript syntax check in eclipse

I am developing a RIA application w/ javascript in Eclipse. How can enable Javascript syntax checks in eclipse?
3
votes
1answer
69 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 ...
5
votes
2answers
4k 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 ...
0
votes
1answer
205 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 = ...
2
votes
2answers
1k 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 ...
1
vote
4answers
1k 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 ...
2
votes
3answers
274 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 ...
0
votes
3answers
2k 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 2