Dexels / navajo

Navajo Service-oriented Applications
GNU Affero General Public License v3.0
9 stars 5 forks source link

NS3 parse error with nested message #610

Closed aschoneveld closed 2 years ago

aschoneveld commented 2 years ago

This NS3 script does not compile:

map.navajomap { 
    message "Aap" {
        message "Array" {
            $messages {

            }
        }
    }
}

while this one does:

map.navajomap { 
        message "Array" {
            $messages {

            }
        }
}