// OK input is:
//
//  ID = whatever
// the blanks around the = are optional and will be removed

_nameContents:
    opt_ws '=' opt_tokens       // ID =(contents-to-be-stripped)?
    {
        $$ = $3;
    }
;

_nameID:
    ID
    {
        $$ = d_scanner.matched();
    }
;

nameLine:
    _nameID _nameContents
    {
        d_cronData.setEnvVar($1, $2);
    }
;



