Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cannot Index a Text in Waldo #49

Open
ekyauk opened this issue Jul 12, 2013 · 0 comments
Open

Cannot Index a Text in Waldo #49

ekyauk opened this issue Jul 12, 2013 · 0 comments
Labels

Comments

@ekyauk
Copy link
Collaborator

ekyauk commented Jul 12, 2013

Waldo crashes when trying to index a Text (i.e. str[0]). Below is an example of code that will cause the crash.

Waldo code

Endpoint StrTester;

StrTester {
    Text str_test = "hello";
    Public Function return_str() {
        str_test[0];
    }
}

Python code

from str_bug_emitted import StrTester
import sys
import os
sys.path.append(os.path.join("../../"))
from waldo.lib import Waldo

str_tester = Waldo.no_partner_create(StrTester)
str_tester.return_str()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant