| 2875 | }); | 2875 | }); |
| 2876 | | 2876 | |
| 2877 | const entryState = function () { | 2877 | const entryState = function () { |
| 2878 | if (entry.constant === true) { | 2878 | if (entry.disable === true) { |
| | 2879 | return 'disabled'; |
| | 2880 | } else if (entry.constant === true) { |
| 2879 | return 'constant'; | 2881 | return 'constant'; |
| 2880 | } else if (entry.vectorized === true) { | 2882 | } else if (entry.vectorized === true) { |
| 2881 | return 'vectorized'; | 2883 | return 'vectorized'; |
| 2882 | } else if (entry.disable === true) { | | |
| 2883 | return 'disabled'; | | |
| 2884 | } else { | 2884 | } else { |
| 2885 | return 'normal'; | 2885 | return 'normal'; |
| 2886 | } | 2886 | } |