@Null Annotations, etc

This commit is contained in:
林万程
2022-10-23 20:24:25 +08:00
parent 032b50b23f
commit 44f024ac21
63 changed files with 761 additions and 678 deletions

View File

@@ -1,25 +1,25 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
</body>
<script type="javascript">
lineBlock(isNotDoc)
lineBlock(docVal)
lineBlock(isNotDoc)
lineBlock(docVal)
// isNotDoc
const isNotDoc = ""
// isNotDoc
const isNotDoc = ""
/** docVal */
const docVal = ""
/** docVal */
const docVal = ""
/*** lineBlock ***/
function lineBlock(t) {
return t
}
/*** lineBlock ***/
function lineBlock(t) {
return t
}
</script>
</html>

View File

@@ -1,4 +1,3 @@
lineBlock(isNotDoc)
lineBlock(docVal)
block()
@@ -11,7 +10,7 @@ const docVal = ""
/*** lineBlock ***/
function lineBlock(t) {
return t
return t
}
/*****
@@ -19,5 +18,5 @@ function lineBlock(t) {
***** 2
*****/
function block(t) {
return t
return t
}

View File

@@ -1,4 +1,3 @@
obj.isA(obj.getB())
obj.setA(obj.getB())
obj.setB(obj.a)
@@ -15,29 +14,29 @@ let b = obj
/** obj1 */
let obj = {
/** a */
"a":"A",
/** b */
"b":"B",
/** sub */
"sub":{
/** subKey */
"subKey":"subVal"
},
/** isA */
isA: function (t) {
return t
},
/** setA */
setA: function (t) {
return t
},
/** getB */
getB: function (t) {
return t
},
/** setB */
setB: function (t) {
return t
},
/** a */
"a": "A",
/** b */
"b": "B",
/** sub */
"sub": {
/** subKey */
"subKey": "subVal"
},
/** isA */
isA: function (t) {
return t
},
/** setA */
setA: function (t) {
return t
},
/** getB */
getB: function (t) {
return t
},
/** setB */
setB: function (t) {
return t
},
}

View File

@@ -13,6 +13,7 @@ class Type:
# Type init
def __init__(self):
pass
# field1
field = ""

View File

@@ -2,7 +2,7 @@ package io.github.linwancen.plugin.show.demo.java;
/**
* InDoc
*
* <p>
* {@link InDoc}
* {@link InDoc#field}
* {@link InDoc#method1}

View File

@@ -1,8 +1,7 @@
{
"nestedClass":
{
"nestedClass2": {
"a": ""
}
"nestedClass": {
"nestedClass2": {
"a": ""
}
}
}

View File

@@ -1 +1,3 @@
select * from NewTable where Column1 is not null ;
select *
from NewTable
where Column1 is not null;