Wiki
Show
Ignore:
Timestamp:
03/05/10 04:41:04 (2 years ago)
Author:
Chuck.Esterbrook
Message:

Fixed: Cobra compile failure on delegates calling .(begin|end)Invoke. ticket:196
Code cleanup. Using IList over List more.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • cobra/trunk/Source/Container.cobra

    r2207 r2299  
    8585    var _declsByNameCI as Dictionary<of String, TMember> 
    8686    var _docString as String 
    87     var _isNames as List<of String> 
    88  
    89     cue init(token as IToken, name as String, isNames as List<of String>, docString as String?) 
     87    var _isNames as IList<of String> 
     88 
     89    cue init(token as IToken, name as String, isNames as IList<of String>, docString as String?) 
    9090        .init(nil, token, name, isNames, docString) 
    9191 
    92     cue init(parent as IParentSpace?, token as IToken, name as String, isNames as List<of String>, docString as String?) 
     92    cue init(parent as IParentSpace?, token as IToken, name as String, isNames as IList<of String>, docString as String?) 
    9393        base.init(token, name) 
    9494        _initParent(parent)