deadlyBuzz / STLAnalyser

STL Analyser code
2 stars 0 forks source link

ARRAY[X..Y] OF ZZZZ #4

Closed deadlyBuzz closed 10 years ago

deadlyBuzz commented 10 years ago

When processing a local array entry- It cannot define the array into a type. The entire process of arrays and structures in the parameter zone is a no go zone at present.

deadlyBuzz commented 10 years ago

working and identifying arrays correctly however the name string to represent the name of the array is not being parsed correctly by the regular expressions,

Ref: src/stlanalyser/Model/SourceEntry.java Line 173.

deadlyBuzz commented 10 years ago

This particular issue is sorted (see commit 13: SHA addd11ca4c01bb5cd9db626e06c8fdbed2229e68) however the fix may have impeded any fix requirements for a String String[XXX] references in the program. Once tested and sorted, Issue can be closed.

deadlyBuzz commented 10 years ago

Sorted. had to pull any array declarations from source out of the source strings and treat all as bytes for character access. String access is only used when passing parameters and will be addressed in the "CALL" function fix.