- Variable declaration standardization. Big commit.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@3671 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
baloh.matevz@gmail.com
2012-05-25 19:26:36 +00:00
parent cfd59cf0a2
commit c2c7a3bcda
131 changed files with 1493 additions and 1402 deletions

View File

@@ -1,12 +1,13 @@
//This file was auto-corrected by findeclaration.exe on 25.5.2012 20:42:33
/*
Class: Token
Represents an entity and position in the source code.
*/
/token
var
value
line
column
var/value
var/line
var/column
New(v, l=0, c=0)
value=v
@@ -24,9 +25,8 @@
value=text2num(value)
ASSERT(!isnull(value))
accessor
var
object
member
var/object
var/member
New(object, member, l=0, c=0)
src.object=object
@@ -35,4 +35,4 @@
src.line=l
src.column=c
end
end