Configuring Move Token Rules
There are rules which will move tokens around to help with the structure of the code.
There is one option for these rules:
Option |
Values |
Default |
Description |
---|---|---|---|
|
|
|
|
This is an example of how to configure the option.
rule :
port_map_004:
action: 'new_line'
Note
All examples below are using the rule port_map_004.
Example: action
set to new_line
The following code would fail with this option:
U_INST : FIFO
port map (
A => B,
B => C);
The following code would pass with this option:
U_INST : FIFO
port map (
A => B,
B => C
);
Example: action
set to move_left
The following code would fail with this option:
U_INST : FIFO
port map (
A => B,
B => C
);
The following code would pass with this option:
U_INST : FIFO
port map (
A => B,
B => C);