(prop)
| 1175 | } |
| 1176 | |
| 1177 | getPropertyBrowserNotes(prop) { |
| 1178 | const notes = []; |
| 1179 | |
| 1180 | if (prop.includes('@property')) { |
| 1181 | notes.push('Chrome 85+, Safari 15.4+'); |
| 1182 | } |
| 1183 | if (prop.includes('backdrop-filter')) { |
| 1184 | notes.push('需要注意浏览器兼容性'); |
| 1185 | } |
| 1186 | |
| 1187 | return notes.join('. '); |
| 1188 | } |
| 1189 | |
| 1190 | async saveCodePatterns(issueNumber, patterns) { |
| 1191 | const insertSQL = ` |
no outgoing calls
no test coverage detected