definitions[0]->fields[0]->type; $sourceB = Parser::parse(new Source( 'type Foo { field: Int }', 'SourceB' )); $fieldTypeB = $sourceB->definitions[0]->fields[0]->type; $error = new Error( 'Example error with two nodes', [ $fieldTypeA, $fieldTypeB, ] ); self::assertEquals( 'Example error with two nodes SourceA (2:10) 1: type Foo { 2: field: String ^ 3: } SourceB (2:10) 1: type Foo { 2: field: Int ^ 3: } ', FormattedError::printError($error) ); } }