Changeset 523 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/src/Variable.cpp
- Timestamp:
- May 1, 2008, 11:03:14 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/src/Variable.cpp
r511 r523 4 4 #include <Variable.h> 5 5 6 Variable::Variable( const st ring &name, const Type &type, bool isConst, bool isRef, const std::string ¶mStrForConstructor, bool hasInitData )6 Variable::Variable( const std::string &name, const Type &type, bool isConst, bool isRef, const std::string ¶mStrForConstructor, bool hasInitData ) 7 7 : Symbol( ActiveBasic::Compiler::LexicalAnalyzer::FullNameToSymbol( name ) ) 8 8 , type( type ) … … 15 15 { 16 16 } 17 Variable::Variable( const NamespaceScopes &namespaceScopes, const st ring &name, const Type &type, bool isConst, bool isRef, const std::string ¶mStrForConstructor, bool hasInitData )17 Variable::Variable( const NamespaceScopes &namespaceScopes, const std::string &name, const Type &type, bool isConst, bool isRef, const std::string ¶mStrForConstructor, bool hasInitData ) 18 18 : Symbol( namespaceScopes, name ) 19 19 , type( type )
Note:
See TracChangeset
for help on using the changeset viewer.