Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cs444
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xun Yang
cs444
Commits
f7ade625
Commit
f7ade625
authored
5 years ago
by
pycsham
Browse files
Options
Downloads
Patches
Plain Diff
Modified scanner and cfg for some bugs for false positives
parent
097f4d64
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
Scanning.py
+2
-2
2 additions, 2 deletions
Scanning.py
Test.py
+11
-10
11 additions, 10 deletions
Test.py
cfg/lr1GenInput.cfg
+1
-6
1 addition, 6 deletions
cfg/lr1GenInput.cfg
cfg/trans.txt
+14167
-14686
14167 additions, 14686 deletions
cfg/trans.txt
with
14181 additions
and
14704 deletions
Scanning.py
+
2
−
2
View file @
f7ade625
...
...
@@ -31,7 +31,7 @@ idToTokenDict = dict({
'
if
'
:
'
IF
'
,
'
implements
'
:
'
IMPLEMENTS
'
,
'
import
'
:
'
IMPORT
'
,
'
instaceof
'
:
'
INSTANCEOF
'
,
'
insta
n
ceof
'
:
'
INSTANCEOF
'
,
'
int
'
:
'
INT
'
,
'
interface
'
:
'
INTERFACE
'
,
'
native
'
:
'
NATIVE
'
,
...
...
@@ -493,7 +493,7 @@ def scan(input):
return
(
None
,
"
wrong keyword in comp id
"
)
if
i
is
not
0
and
(
t
==
'
Class
'
or
t
==
'
class
'
):
return
(
None
,
"
wrong keyword in comp id
"
)
# Checking if the multi line comment has a closing tag
if
token
.
name
==
'
LCOMMENT
'
:
multiLineCommentFlag
=
True
...
...
This diff is collapsed.
Click to expand it.
Test.py
+
11
−
10
View file @
f7ade625
...
...
@@ -7,7 +7,7 @@ from Parsing import parse
def
allFiles
(
testDir
):
return
[
testDir
+
f
for
f
in
listdir
(
testDir
)
if
isfile
(
join
(
testDir
,
f
))
and
f
.
startswith
(
'
J
1
'
)]
return
[
testDir
+
f
for
f
in
listdir
(
testDir
)
if
isfile
(
join
(
testDir
,
f
))
and
f
.
startswith
(
'
J
e
'
)]
def
main
():
...
...
@@ -17,21 +17,21 @@ def main():
print
(
"
**********************************************************
"
)
for
f
in
testFiles
:
print
(
f
)
#
print(f)
# Scanning
content
=
open
(
f
,
"
r
"
).
read
()
(
tokens
,
errorString
)
=
scan
(
content
)
# Error in Scanning
if
tokens
is
None
:
print
(
"
ERROR in Scanning:
"
+
errorString
)
#
print("ERROR in Scanning: " + errorString)
print
(
"
**********************************************************
"
)
continue
s
=
"
All Tokens:
"
for
token
in
tokens
:
if
(
token
.
name
and
token
.
lex
):
s
+=
'
(
'
+
token
.
name
+
'
,
'
+
token
.
lex
+
'
),
'
#
s = "All Tokens: "
#
for token in tokens:
#
if (token.name and token.lex):
#
s += '(' + token.name + ',' + token.lex + '), '
# print(s)
# Parsing
...
...
@@ -44,10 +44,11 @@ def main():
# Error in Parsing
if
steps
is
None
:
print
(
"
ERROR in Parsing:
"
,
errorString
)
print
(
"
**********************************************************
"
)
#
print("ERROR in Parsing: ", errorString)
#
print("**********************************************************")
continue
print
(
f
)
print
(
"
Succeeded
"
)
# print("All Steps:")
# print(steps)
...
...
This diff is collapsed.
Click to expand it.
cfg/lr1GenInput.cfg
+
1
−
6
View file @
f7ade625
...
...
@@ -162,7 +162,7 @@ primaryNoArrayAccess
arrayID
methodOrFieldID
start
20
5
20
0
start
BOF
packageDcl
importDcls
topDcls
EOF
packageDcl
PACKAGE
name
SEMICO
packageDcl
PACKAGE
ID
SEMICO
...
...
@@ -197,7 +197,6 @@ constructorDcl methodMod ID LPAREN params RPAREN methodBody
methodDcl
methodMod
methodHead
methodBody
methodHead
type
ID
LPAREN
params
RPAREN
methodHead
VOID
ID
LPAREN
params
RPAREN
methodMod
methodMod
PUBLIC
methodMod
PUBLIC
FINAL
methodMod
PUBLIC
STATIC
...
...
@@ -208,9 +207,6 @@ methodMod PROTECTED FINAL
methodMod
PROTECTED
STATIC
methodMod
PROTECTED
ABSTRACT
methodMod
PROTECTED
STATIC
NATIVE
methodMod
STATIC
methodMod
STATIC
NATIVE
methodMod
FINAL
methodMod
ABSTRACT
methodBody
block
methodBody
SEMICO
...
...
@@ -358,7 +354,6 @@ multExpr unaryExpr
multExpr
multExpr
MULT
unaryExpr
multExpr
multExpr
DIV
unaryExpr
multExpr
multExpr
MOD
unaryExpr
unaryExpr
ADD
unaryExpr
unaryExpr
SUB
unaryExpr
unaryExpr
unaryNotPlusMinus
unaryNotPlusMinus
postfixExpr
...
...
This diff is collapsed.
Click to expand it.
cfg/trans.txt
+
14167
−
14686
View file @
f7ade625
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment