API-CHANGES.txt 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020
  1. 0.25.0:
  2. * Deprecate Behavior >> javascriptConstructor(:)
  3. * Deprecate ProtoObject >> instVarAt:(put:)
  4. * Lots of changes in Compiler.
  5. * Added Teachable class.
  6. + Behavior >>
  7. + alternateConstructorViaSelector:
  8. + applySuperConstructorOn:withArguments:
  9. + beJavaScriptSubclassOf:
  10. + javaScriptConstructor
  11. + javaScriptConstructor:
  12. + superPrototype
  13. + BlockClosure >>
  14. + tryIfTrue:catch:
  15. + ProtoObject >>
  16. + instVarNamed:
  17. + instVarNamed:put:
  18. + SequenceableCollection >>
  19. + copyWithFirst:
  20. + SmalltalkImage >>
  21. + isError:
  22. + try:ifTrue:catch:
  23. + amber/boot api >>
  24. + detachClass(klass)
  25. + amber/helpers exports >>
  26. + $nil
  27. - Error >>
  28. - beSmalltalkError
  29. - isSmalltalkError
  30. - JavaScriptError >>
  31. - shouldBeStubbed
  32. - wrap
  33. - MethodContext >>
  34. - stubHere
  35. - stubToAtMost:
  36. - amber/boot api >>
  37. - addElement(arraySet, el)
  38. - removeElement(arraySet, el)
  39. 0.23.2:
  40. + Platform class >>
  41. + fetch:
  42. + fetchUrl:options:
  43. + BrowserPlatform >>
  44. + fetch:
  45. + fetchUrl:options:
  46. + NodePlatform >>
  47. + fetch:
  48. + fetchUrl:options:
  49. 0.23.1:
  50. + TBehaviorDefaults >>
  51. + includingPossibleMetaDo:
  52. + Class >>
  53. + includingPossibleMetaDo:
  54. + CompiledMethod >>
  55. + origin
  56. - SmalltalkImage >>
  57. - includesKey:
  58. 0.23.0:
  59. * Namespace change: amber_core => amber/core.
  60. * amber/boot api addClass only takes 3 params; 4 param version deprecated
  61. + SmalltalkImage >>
  62. + beClean
  63. + amber/helpers exports >>
  64. + beClean
  65. + amber/boot api >>
  66. + setSlots(klass, arrayOfNames)
  67. 0.22.4:
  68. * Remove class IndexableCollection, trait TKeyValueCollection.
  69. * Merge CharacterArray class into String class
  70. * Deprecate CharacterArray class
  71. * Deprecate Collection >> copyWithAll:, #, is enough.
  72. + amber/helpers exports
  73. + loadPackages
  74. - Array >>
  75. - numericallyIndexable
  76. - Set
  77. - detect:ifNone: (pushed up to Collection)
  78. - SequenceableCollection
  79. - numericallyIndexable
  80. - String >>
  81. - numericallyIndexable
  82. 0.22.1:
  83. + BlockClosure >>
  84. + provided
  85. + Class >>
  86. + provided
  87. 0.22.0:
  88. * Deprecate Exception >> resignal. Should have been #pass.
  89. + Compiler >>
  90. + ast:forClass:protocol:
  91. + cleanCodeGenerator
  92. + codeGenerator
  93. + forClass:protocol:
  94. + Exception
  95. + outer
  96. + pass
  97. + JSObjectProxy >>
  98. + removeKey:
  99. + Number >>
  100. + ln1p
  101. + SmalltalkImage >>
  102. + postLoad
  103. - AmberBootstrapInitialization class >>
  104. - initializeClasses
  105. - ClassBuilder >>
  106. - setupClass:
  107. - Compiler >>
  108. - compileNode:forClass:package:
  109. - ProtoObject
  110. - asJSON
  111. - asJavascript
  112. - SmalltalkImage >>
  113. - packageAt:
  114. - amber/boot api >>
  115. - nextId
  116. 0.21.1:
  117. + ClassBuilder >>
  118. + class:instanceVariables:
  119. + JSObjectProxy class >>
  120. + null
  121. + undefined
  122. - ClassBuilder >>
  123. - basicClass:instanceVariableNames:
  124. 0.21.0:
  125. * Deprecate SmalltalkImage >> existsJsGlobal:
  126. + Number >>
  127. + bitAnd:
  128. + bitNot
  129. + bitOr:
  130. + bitXor:
  131. + printStringBase:
  132. + Platform class >>
  133. + includesGlobal:
  134. 0.20.0:
  135. * Internal kernel fields naming changes.
  136. + amber/boot api >>
  137. + traitsOrClasses
  138. - SmalltalkImage >>
  139. - legacyGlobalJsVariables
  140. - amber/boot >>
  141. - nil
  142. - dnu
  143. - amber/boot api >>
  144. - classes
  145. 0.19.1:
  146. * Deprecate amber/boot api nextId, prop globalJsVariables.
  147. * Deprecate ProtoObject >> identityHash.
  148. * Deprecate SmalltalkImage >> packageAt: in favour of explicit #packageAt:if{Absent,Present}:.
  149. + AmberBootstrapInitialization class >>
  150. + run
  151. + initializeClasses
  152. + organizeClasses
  153. + organizeMethods
  154. + Behavior >>
  155. + basicOrganization
  156. + basicOrganization:
  157. + ClassOrganizer >>
  158. + theClass
  159. + ClassOrganizer class >>
  160. + on:
  161. + Compiler class >>
  162. + eval:
  163. + JavaScriptException >>
  164. + shouldBeStubbed
  165. + wrap
  166. + Message class >>
  167. + selector:arguments:notUnderstoodBy:
  168. + MethodContext >>
  169. + stubHere
  170. + stubToAtMost:
  171. + NonBooleanReceiver class >>
  172. + signalOn:
  173. + Package >>
  174. + evalBlock
  175. + evalBlock:
  176. + Package class >>
  177. + named:javaScriptDescriptor:
  178. + SmalltalkImage >>
  179. + packageDictionary
  180. + packageAt:ifPresent:
  181. + TBehaviorProvider >>
  182. + methodOrganizationEnter:andLeave:
  183. + TMasterBehavior >>
  184. + definedMethods
  185. + enterOrganization
  186. + leaveOrganization
  187. + Trait >>
  188. + basicOrganization
  189. + basicOrganization:
  190. + UndefinedObject >>
  191. + ==
  192. + Number >>
  193. + min:max:
  194. + degreesToRadians
  195. + radiansToDegrees
  196. + arcTan:
  197. + between:and:
  198. + Number class >>
  199. + radiansPerDegree
  200. + Point >>
  201. + dotProduct:
  202. + normal
  203. + angle
  204. + normalized
  205. + r
  206. + corner:
  207. + extent:
  208. + rectangle:
  209. + Rectangle >>
  210. + =
  211. + corner
  212. + origin
  213. + containsPoint:
  214. + containsRect:
  215. + printOn:
  216. + Rectangle class >>
  217. + origin:corner:
  218. + origin:extent:
  219. + point:point:
  220. - Package >>
  221. - basicName:
  222. - basicImports
  223. - ProtoObject >>
  224. - isSameInstanceAs:
  225. - ObjectTest >>
  226. - testIdentityHash
  227. - amber/boot api >>
  228. - reservedWords (with the hope no one uses it directly)
  229. 0.19.0:
  230. * Remove class Thenable, add trait TThenable.
  231. * Behavior / Trait hierarchy uses traits.
  232. + NativeFunction class >>
  233. + isNativeFunction:
  234. + IRInstructions >>
  235. + isSelf
  236. + isSuper
  237. + IRVariable >>
  238. + isSelf
  239. + isSuper
  240. + ScopeVar >>
  241. + isSelf
  242. + isSuper
  243. + PseudoVar >>
  244. + isSelf
  245. + isSuper
  246. +UndefinedObject >>
  247. + identityHash
  248. + value
  249. + amber/boot >>
  250. + nilAsValue
  251. - IRSend >>
  252. - isSuperSend
  253. 0.18.3:
  254. * Move {add,remove}Element from Array.prototype to kernel API.
  255. * New superclass of Behavior named BehaviorBody, pushed up some methods.
  256. * Represents named holder of methods; hierarchy and instantiation left to Behavior.
  257. * Add class Trait as subclass of BehaviorBody.
  258. * Add class TraitTransformation.
  259. * Deprecate #asJSON in favour of #asJavaScriptObject.
  260. * Deprecate #asJavascript in favour of #asJavaScriptSource.
  261. + BehaviorBody >>
  262. + setTraitComposition:
  263. + traitCompositionDefinition
  264. + traitUsers
  265. + allSubclassesDo:
  266. + superclass
  267. + Trait >>
  268. + allInstanceVariableNames
  269. + allSubclassesDo:
  270. + asJavascript
  271. + asTraitComposition
  272. + category
  273. + classTag
  274. + definition
  275. + package
  276. + superclass
  277. + theMetaClass
  278. + theNonMetaClass
  279. + exportBehaviorDefinitionTo:using:
  280. + traitUsers
  281. + package:
  282. + Trait class >>
  283. + named:package:
  284. + named:uses:package:
  285. + TraitTransformation >>
  286. + -
  287. + @
  288. + addAliases:
  289. + addExclusions:
  290. + aliases
  291. + asJSON
  292. + asJavascript
  293. + asTraitComposition
  294. + asTraitTransformation
  295. + definition
  296. + exclusions
  297. + initialize
  298. + postCopy
  299. + trait
  300. + trait:
  301. + Collection >>
  302. + copyWithout:
  303. + SequenceableCollection >>
  304. + reverseDo:
  305. + Array >>
  306. + asTraitComposition
  307. + amber/boot api >>
  308. + addElement
  309. + removeElement
  310. + wrapJavaScript
  311. + CharacterArray >>
  312. + asSymbolPrintOn:
  313. + symbolPrintString
  314. + String >>
  315. + isSelector
  316. + StringStream >>
  317. + print:
  318. + printSymbol:
  319. + Package >>
  320. + traitCompositions
  321. + Class >>
  322. + subClass:
  323. + subClass:uses:
  324. + subClass:uses:instanceVariables:
  325. + subClass:uses:instanceVariables:category:
  326. + subClass:uses:instanceVariables:classVariables:poolDictionaries:category:
  327. + subClass:uses:instanceVariables:package:
  328. + UndefinedObject >>
  329. + subClass:
  330. + subClass:uses:
  331. + subClass:uses:instanceVariables:
  332. + subClass:uses:instanceVariables:category:
  333. + subClass:uses:instanceVariables:classVariables:poolDictionaries:category:
  334. + subClass:uses:instanceVariables:package:
  335. + Metaclass >>
  336. + uses:instanceVariableNames:
  337. - Association >>
  338. - importsString
  339. - String >>
  340. - importsString
  341. - AbstractExporter
  342. - classNameFor:
  343. - Exporter >>
  344. - jsClassNameFor:
  345. 0.18.2:
  346. * Add Platform-DOM package with DOM-related stuff.
  347. * Platform-DOM not loaded by default. Packages that will use it will import it.
  348. + PlatformDom class >>
  349. + isFeasible
  350. + isDomNode:
  351. + newCustomEvent:detail:
  352. + toArray:
  353. + CharacterArray >>
  354. + asDomNode
  355. + Collection >>
  356. + asDomNode
  357. + JSObjectProxy >>
  358. + asDomNode
  359. + String >>
  360. + htmlTextContent
  361. 0.18.1:
  362. + ASTNode >>
  363. + withTail:
  364. - SendNode >>
  365. - valueWithReceiver:
  366. 0.18.0:
  367. * Remove class RethrowErrorHandler (hack for cli before 0.12.3).
  368. * Add Kernel-Dag package with abstract DAG-node and DAG-node visitor.
  369. * Some internal API changes in Compiler-* (including the move to DAG-node).
  370. - Object >>
  371. - throw:
  372. 0.17.0:
  373. * Remove classes InterfacingObject, PlatformInterface.
  374. * Deprecate $boot.nil (use $boot.nilAsReceiver).
  375. + amber/boot >>
  376. + nilAsReceiver
  377. - NativeFunction class >>
  378. - constructor:
  379. - constructor:value:
  380. - constructor:value:value:
  381. - constructor:value:value:value:
  382. 0.16.1:
  383. * Deprecate $boot.dnu (use $boot.nilAsClass).
  384. + amber/boot >>
  385. + nilAsClass
  386. 0.16.0:
  387. * Deprecate ClassBuilder >> setupClass:
  388. * $core.initialize now returns a Promise
  389. * $core.addClass now returns the class
  390. + amber/boot api >>
  391. + send2
  392. + traverseClassTree
  393. + Promise class >>
  394. + new
  395. - amber/boot api >>
  396. - wrapClassName
  397. - send
  398. - allSubclasses
  399. - AbstractCodeGenerator >>
  400. - classNameFor:
  401. 0.15.1:
  402. * Thenable class added
  403. * Promise class added, wraps JS Promise, subclass of Thenable
  404. + Thenable >>
  405. + catch:
  406. + on:do:
  407. + on:do:catch:
  408. + then:
  409. + then:catch:
  410. + then:on:do:
  411. + then:on:do:catch:
  412. + JSObjectProxy >>
  413. + catch:
  414. + on:do:
  415. + on:do:catch:
  416. + then:
  417. + then:catch:
  418. + then:on:do:
  419. + then:on:do:catch:
  420. + amber/boot api >>
  421. + seamless
  422. + Promise class >>
  423. + new:
  424. + forBlock:
  425. + value:
  426. + signal:
  427. + all:
  428. + any:
  429. 0.14.18:
  430. * Some internal API changes in Compiler-*.
  431. 0.14.14:
  432. * InterfacingObject >> ajax: deprecated
  433. * PlatformInterface class deprecated
  434. * Class BrowserInterface removed
  435. * Class Terminal, BrowserTerminal added
  436. * Class Platform, BrowserPlatform added
  437. + Environment >>
  438. + renamePackage:to:
  439. + Platform class >>
  440. + globals
  441. + newXhr
  442. + Terminal class >>
  443. + alert:
  444. + confirm:
  445. + prompt:
  446. + prompt:default:
  447. SmalltalkImage >>
  448. + existsJsGlobal:
  449. - PlatformInterface class >>
  450. - initialize
  451. - setWorker:
  452. 0.14.12:
  453. + JSObjectProxy >>
  454. + putOn:
  455. + ProtoStream >>
  456. + nextPutJSObject:
  457. 0.14.11:
  458. * Basic streaming protocol extracted from Stream to ProtoStream
  459. + Object >>
  460. + in:
  461. + JSObjectProxy >>
  462. + in:
  463. 0.14.10:
  464. + JSObjectProxy class >>
  465. + addObjectVariablesTo:ofProxy:
  466. + compareJSObjectOfProxy:withProxy:
  467. + forwardMessage:withArguments:ofProxy:
  468. + jsObject:ofProxy:
  469. + lookupProperty:ofProxy:
  470. - JSObjectProxy >>
  471. - jsObject:
  472. - lookupProperty:
  473. - compareJSObjectWith:
  474. - addObjectVariablesTo:
  475. - forwardMessage:withArguments:
  476. 0.14.4:
  477. + AmdExporter >>
  478. + importsForOutput:
  479. + AbstractCodeGenerator >>
  480. + currentPackage
  481. + currentPackage:
  482. + Compiler >>
  483. + currentPackage
  484. + currentPackage:
  485. + compile:forClass:protocol:
  486. + compileNode:forClass:package:
  487. + SemanticAnalyzer >>
  488. + thePackage
  489. + thePackage:
  490. + isVariableUndefined:inPackage:
  491. - Compiler >>
  492. - compile:
  493. - compile:forClass:
  494. - compileExpression:
  495. - SemanticAnalyzer >>
  496. - isVariableGloabllyUndefined:
  497. - Behavior >>
  498. - compile:
  499. 0.14.3:
  500. * #heliosClass is now #classTag
  501. + Compiler >>
  502. + eval:forPackage:
  503. + Behavior >>
  504. + packageOfProtocol:
  505. + Exporter >>
  506. + exportPackageContextOf:on:
  507. + exportPackageImportsOf:on:
  508. + Package >>
  509. + basicImports
  510. + imports
  511. + imports:
  512. + importsDefinition
  513. + importsFromJson:
  514. + importsAsJson
  515. + sortedImportsAsArray
  516. + validateImports:
  517. + Package class >>
  518. + named:imports:transport:
  519. + Association >>
  520. + importsString
  521. + String >>
  522. + importsString
  523. + ProtoObject >>
  524. + ifNil:
  525. + ifNil:ifNotNil:
  526. + ifNotNil:
  527. + ifNotNil:ifNil:
  528. + isNil
  529. + notNil
  530. - Object >>
  531. - ifNil:
  532. - ifNil:ifNotNil:
  533. - ifNotNil:
  534. - ifNotNil:ifNil:
  535. - isNil
  536. - notNil
  537. 0.14.1:
  538. * NativeFunction class >> constructor:[value:...] deprecated
  539. + NativeFunction class >>
  540. + constructorNamed:
  541. + constructorNamed:value:
  542. + constructorNamed:value:value:
  543. + constructorNamed:value:value:value:
  544. + constructorOf:
  545. + constructorOf:value:
  546. + constructorOf:value:value:
  547. + constructorOf:value:value:value:
  548. + functionNamed:
  549. + functionNamed:value:
  550. + functionNamed:value:value:
  551. + functionNamed:value:value:value:
  552. + functionNamed:valueWithArgs:
  553. + functionOf:
  554. + functionOf:value:
  555. + functionOf:value:value:
  556. + functionOf:value:value:value:
  557. + functionOf:valueWithArgs:
  558. + methodOf:this:
  559. + methodOf:this:value:
  560. + methodOf:this:value:value:
  561. + methodOf:this:value:value:value:
  562. + methodOf:this:valueWithArgs:
  563. + SmalltalkImage >>
  564. + optOut:
  565. + cancelOptOut:
  566. 0.14.0:
  567. + Object >>
  568. + asJQuery
  569. + asJQueryInContext:
  570. + BlockClosure >>
  571. + asJQuery
  572. + asJQueryInContext:
  573. - AnnouncementSubscription >>
  574. - block
  575. - block:
  576. - Collection >>
  577. - contains:
  578. - String >>
  579. - asSelector
  580. - asJavaScriptSelector
  581. - SmalltalkImage >>
  582. - at:
  583. - at:ifAbsent:
  584. - at:put:
  585. - current
  586. - vm
  587. - createPackage:properties:
  588. - MethodContext >>
  589. - temps
  590. - Object >>
  591. - try:catch:
  592. 0.13.2:
  593. + SourceArea class >>
  594. + codeMirror
  595. 0.13.1:
  596. * String >> asSelector is now String >> asJavaScriptMethodName
  597. * String >> asJavaScriptSelector is now String >> asJavaScriptPropertyName
  598. * smalltalk.selector is now smalltalk.st2js
  599. * smalltalk.convertSelector is now smalltalk.js2st
  600. * Collection >> ifEmpty:ifNotEmpty: family passes self to ifNotEmpty: block
  601. * Smalltalk vm is now Smalltalk core
  602. * boot.js's .vm is now .api
  603. * amber load sets' .vm is now .api
  604. * Internal variables smalltalk/globals/_st are now $core/$globals/$recv
  605. + smalltalk.
  606. + accessJavaScript
  607. + Object >>
  608. + postMessageTo:
  609. + postMessageTo:origin:
  610. + Class >>
  611. + heliosClass
  612. + SmalltalkImage >>
  613. + core
  614. + amber/boot
  615. + api
  616. + amber/{devel,deploy,lang} exports
  617. + api
  618. - ProtoObject class >>
  619. - heliosClass
  620. - Object class >>
  621. - heliosClass
  622. - amber/boot
  623. - vm
  624. 0.12.6:
  625. + String >>
  626. + value:
  627. + ProtocolAnnouncement >>
  628. + package
  629. + Behavior >>
  630. + isTestClass
  631. + Package >>
  632. + isTestPackage
  633. + amber/{devel,deploy,lang} exports
  634. + nil
  635. + amber/helpers exports
  636. + nil
  637. 0.12.4:
  638. * Package Canvas renamed to Web
  639. * Object >> try:catch: deprecated in favour of BlockClosure >> tryCatch:
  640. + Announcer >>
  641. + on:do:for:
  642. + Node >>
  643. + navigationNodeAt:ifAbsent:
  644. + BlockClosure >>
  645. + tryCatch:
  646. + Environment >>
  647. + evaluate:for:
  648. + AmberCli >>
  649. + version:
  650. + Object >>
  651. + deprecatedAPI:
  652. - Environment >>
  653. - eval:on:
  654. - evaluateString:on:
  655. 0.12.3:
  656. * Package Import-Export renamed to Kernel-ImportExport
  657. * A dozen of methods moved from Object to ProtoObject
  658. * HashedCollection >> at:ifAbsentPut: pushed up to SequenceableCollection
  659. * HashedCollection >> , is now allowed (removed shouldNotImplement)
  660. * HashedCollection and Dictionary both subclasses of AssociativeCollection
  661. * Smalltalk class moved to SmalltalkImage class, Smalltalk is now global var
  662. * Smalltalk current deprecated in favour of Smalltalk
  663. * Smalltalk at:[put:] deprecated in favour of Smalltalk globals at:[put:]
  664. * <smalltalk.ClassName> deprecated in favour of <globals.ClassName>
  665. + CompiledMethod >>
  666. + defaultProtocol
  667. + Behavior >>
  668. + compile:protocol:
  669. + removeProtocolIfEmpty:
  670. + Package >>
  671. + load
  672. + loadFromNamespace:
  673. + Package class >>
  674. + load:
  675. + load:fromNamespace:
  676. + PackageTransport >> load
  677. + PackageHandler >> load:
  678. + AmdPackageHandler >> load:
  679. + Set >> removeAll
  680. + AssociativeCollection class
  681. + BucketStore class
  682. + SmalltalkImage >>
  683. + globals
  684. + vm
  685. + settings
  686. + Setting class
  687. + String >>
  688. + asSetting
  689. + asSettingIfAbsent:
  690. + settingValue
  691. + settingValueIfAbsent:
  692. + settingValue:
  693. + Smalltalk global variable
  694. - CompiledMethod >>
  695. - category: (use #protocol:)
  696. - defaultCategory
  697. - Behavior >> compile:category:
  698. - HTMLCanvas class >>
  699. - browserVersion
  700. - isMSIE
  701. - isMozilla
  702. - isOpera
  703. - isWebkit
  704. 0.12.2:
  705. * Collection >> contains: is deprecated in favor of anySatisfy:
  706. + Announcer >> on:doOnce:
  707. + String >>
  708. + uriEncoded
  709. + uriDecoded
  710. + uriComponentEncoded
  711. + uriComponentDecoded
  712. + Collection >>
  713. + removeAll
  714. + ifEmpty:ifNotEmpty:
  715. + ifNotEmpty:ifEmpty:
  716. + anyOne
  717. + noneSatisfy:
  718. + anySatisfy:
  719. + allSatisfy:
  720. 0.12.0:
  721. * SmalltalkMethodContext.prototype.fillBlock() takes a third 'index' parameter
  722. * Existing classes moved to new KernelInfrastructure package
  723. * ImporterExporter
  724. * are now StreamExporters
  725. * aware of AMD namespaces
  726. * support transport types and commit channels
  727. + Node >>
  728. + nextChild
  729. + method
  730. + postCopy
  731. + isCascadeNode
  732. + isLastChild
  733. + BlockNode >>
  734. + nextNode:
  735. + nextChild
  736. + SendNode >>
  737. + isCascadeSendNode
  738. + shouldBeAliased
  739. + CompiledMethod >> sendTo:arguments:
  740. + Array >>
  741. + addFirst:
  742. + removeLast
  743. + Number >>
  744. + ceiling
  745. + floor
  746. + asNumber
  747. + //
  748. + cos
  749. + sin
  750. + tan
  751. + arcCos
  752. + arcSin
  753. + arcTan
  754. + log
  755. + log:
  756. + raisedTo:
  757. + sign
  758. + **
  759. + ln
  760. + e
  761. + String class >> esc
  762. + String >>
  763. + asMutator
  764. + capitalized
  765. + isCapitalized
  766. + JSProxy >> printString
  767. + Behavior >>
  768. + ownProtocols
  769. + ownMethods
  770. + JSStream >> nextPutSendIndexFor:
  771. + InterfacingObject class
  772. + Interpreter class
  773. + DocumentFragmentTag class
  774. + AbstractExporter class
  775. + PlatformInterface class
  776. - Node >> extent
  777. - JSStream >> nextPutStatement:with:
  778. - Smalltalk.installSuperclass()
  779. - ClassReferenceNode class (now handled via VariableNode)
  780. 0.11.0:
  781. * AnnouncementSubscription use #valuable: instead of #block: (deprecated)
  782. * AbstractCodeGenerator inherits from Object, not NodeVisitor
  783. * Object>>printString
  784. * replace >>printString with >>printOn:
  785. * replace >>storeString with >>printString
  786. * PackageLoader is now PackageHandler (>>commit: >>setupPackagenamed:prefix: >>ajaxPutAt:data:
  787. * Package>>fetch: is now Package>>load:
  788. * Package>>fetch:prefix: is now Package>>load:prefix:
  789. * Queue>>front replaced by Queue>>next
  790. * Queue>>frontIfAbsent: replaced by Queue>>nextIfAbsent:
  791. * Queue>>back: replaced by Queue>>nextPut:
  792. * smalltalk.addMethod() does not use explicit JS selector
  793. * JSObjectProxy>>canForwardMessage: replaced by use of JSObjectProxy>>lookupProperty: with asJavaScriptSelector
  794. * JSObjectProxy>>forwardMessage: replaced by explicit JSObjectProxy>>forwardMessage:withArguments:
  795. * String>>asJavaScriptSelector moved to Kernel-Objects package
  796. + Object>>asString
  797. + Object>>putOn:
  798. + String>>isVowel
  799. + Collection>>putOn:
  800. + CharacterArray>>putOn:
  801. + Stream>><<
  802. + Stream>>write
  803. + SequenceableCollection>>newStream
  804. + SequenceableCollection>>readStream
  805. + SequenceableCollection>>stream
  806. + SequenceableCollection>>streamClass
  807. + SequenceableCollection>>writeStream
  808. + Collection>>isImmutable
  809. + Stream>>nextPutString:
  810. + StringStream>>nextPutString:
  811. + JSStream>>nextPutClassRefFunction:
  812. + String>>crlfSanitized
  813. + inlined Block now also responds to >>value:
  814. + Parser: split literal into runtimeLiteral and parseTimeLiteral
  815. + Parser: write #(4 #(5 6 #()) 7) as #(4 (5 6 ()) 7)
  816. + Parser: write #(#on:do: #Object) as #(on:do: Object)
  817. + Parser: Symbols for binarie selectores
  818. + Package>>commit
  819. + AIContext>>initializeLocals
  820. + ASTInterpreter>>withBlockContext:
  821. + smalltalk.allSelectors()
  822. + Object>>isCompiledMethod
  823. + Object>>isPackage
  824. + Object>>isBehavior
  825. + ClassMoved Announcemen class
  826. + Behavior>>includesBehavior:
  827. + Environment>>classes
  828. + Environment>>allSelectors
  829. + Environment>>removeProtocol:
  830. + Environment>>renameProtocol:to:in:
  831. + CompiledMethod>>protocol:
  832. + Smalltalk>>globalJsVariables
  833. + Smalltalk>>addGlobalJsVariable:
  834. + Smalltalk>>deleteGlobalJsVariable:
  835. - Object>>storeOn:
  836. - Object>>log:block:
  837. - Object>>printNl
  838. - Compiler-IR.st >>javascriptSelector
  839. - Compiler-IR.st >>nextPutVar:
  840. - Kernel-Collections.st >>asSuperSelector
  841. - Collection>>readStream
  842. - Collection>>stream
  843. - Collection>>streamClass
  844. - Collection>>writeStream
  845. - Symbol class (replaced with String)
  846. - IRInlinedNonLocalReturn class
  847. - IRInlinedSend>>nonLocalReturnInliner
  848. - IRNonLocalReturnInliner class
  849. - Package>>dependencies
  850. - Package>>dependencies:
  851. - Package>>properties
  852. - Package>>jsProperties
  853. - Package>>jsProperties:
  854. - Package>>propertiesAsJSON
  855. - Package>>propertyAt:
  856. - Package>>propertyAt:ifAbsent:
  857. - Package>>propertyAt:put:
  858. - Browser>>ajaxPutAt:data: