Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

We're currently working with NRefactory in a school project, and we noticed some nodes in the AST generated by the demo that we couldn't find a corresponding visit method to. For example:

ArrayCreateExpression
--Stuff with visit methods
--IsImplicitlyTyped = true

The node in question is IsImplicityTyped. Our question is, will the IsImplicitlyTyped node be visited? If so, by what? If not, where is it, assuming we're in the VisitArrayCreateExpression method?

EDIT: The sample code being parsed.

using System;

class Test
{
    public void TestMethod()
    {
        int[] arr = new int[5];
    }
}
share|improve this question
Could you also put code your parsing into the question. – albertjan Mar 13 '12 at 18:03

1 Answer

IsImplicitlyTyped is not a node, it's just a boolean property on the ArrayCreateExpression.

IsImplicitlyTyped will return true whenever ArrayCreateExpression.CreateType is the null node.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.