zazuko / xrm

A friendly language for mappings to RDF
MIT License
1 stars 0 forks source link

Sometimes output files don't get re-generated on save #52

Closed mchlrch closed 4 years ago

mchlrch commented 4 years ago

For example if changes are made in files that contain only logical-sourcedefinitions, for example changing value of a Referenceable "stop" in runtime-EclipseXtext/airport-mapping/airport-sources.xrm

From stop "stop":

logical-source airport {
    type csv
    source "http://www.example.com/Airport.csv"

    referenceables
        id
        stop "stop"
        latitude
        longitude null "N/A"
        ownership "airport öwnership" null "X"
}

To stop "flop":

logical-source airport {
    type csv
    source "http://www.example.com/Airport.csv"

    referenceables
        id
        stop "flop"
        latitude
        longitude null "N/A"
        ownership "airport öwnership" null "X"
}

Could be because of how the incremental-builder works

nnamtug commented 4 years ago

Introduced controllability of impact by RdfMappingResourceDescriptionStrategy. For simplicity, LogicalSources always will generate impact. Feel free to decide, when impact is published.

mchlrch commented 4 years ago

Fixed. Closing this