"[systemverilog]":{
"bracketLens.languageConfiguration": {
"word": [
{
"opening": "begin",
"closing": "end",
"headerMode": "smart",
"inters": []
}
],
"symbol": [
{
"opening": "{",
"closing": "}",
"headerMode": "smart",
"inters": []
},
]
}
}
this is my SV code:
class test_my extends uvm_test;
int value;
function new(string name = "test_my ");
if (value==0) begin
`uvm_info("WHERE_PRINT","get one transaction, copy and print it:", UVM_LOW)
end
else if (value==1) begin
`uvm_info("WHERE_PRINT","get one transaction, copy and print it:", UVM_LOW)
end
endfunction: new
endclass: test_my