Another anomaly - in an application which shows ball positions on a pool table, I have a normal module called Balls.elm, which Elm Lens is unable to access (Elm Analyse can find it, but does not process messages for this module).
I have renamed it, rebuilt it, moved it around in the import declarations, to no avail. All other modules in the app are correctly handled
The module is called once, from Main
module Main exposing (..)
import Balls exposing (showBalls)
The module itself begins
module Balls exposing (showBalls)
import Collage exposing (..)
import Element exposing (..)
import Color exposing (..)
type alias Poz =
{ x : Float
, y : Float
}
type alias Ball =
{ poz : Poz
, col : Color
, cat : BallType
}
Rather odd.