Skip to content

Instantly share code, notes, and snippets.

@lkcampbell
Created April 23, 2013 16:00
Show Gist options
  • Save lkcampbell/5444896 to your computer and use it in GitHub Desktop.
Save lkcampbell/5444896 to your computer and use it in GitHub Desktop.
Repro file for variable initialization color code bug
/*jslint vars: true, plusplus: true, devel: true, nomen: true, indent: 4, maxerr: 50 */
/*global define */
define(function (require, exports, module) {
"use strict";
var a = 3,
b = 4;
var c = 1 + 2,
d = 2 + 2;
var x = (1 + 2),
y = (2 + 2);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment